Python微信爬虫類_00
807 ワード
一、環境の構築
1、pipコマンドのインストールhttps://pypi.python.org/pypi/pip#downloadspipパッケージをダウンロードしてフォルダに解凍し、CMDコンソールで解凍ディレクトリに入り、python setupと入力します.py install(備考:Pythonのインストールと環境変数の追加を前提) 環境変数path,C:Python 34Scripts;(Pythonインストールディレクトリ) (備考:同じpath変数名で、各値間で(;)仕切ればいい)
2、itchatのインポート
具体的な操作の参考:https://blog.csdn.net/suki570/article/details/80715981
3、直接pycharmでインストールする:pycharm pythonに必要なパッケージをインポートする
https://jingyan.baidu.com/article/93f9803f5dababe0e46f55fc.html
二、出会った問題
1、no python interpreter configured for the project
解決方法:setting>project Interpreter>Python Interpreter「+」をクリックしてシステムインストールのPythonを選択する
三、小プログラム
1、pipコマンドのインストール
2、itchatのインポート
具体的な操作の参考:https://blog.csdn.net/suki570/article/details/80715981
3、直接pycharmでインストールする:pycharm pythonに必要なパッケージをインポートする
https://jingyan.baidu.com/article/93f9803f5dababe0e46f55fc.html
二、出会った問題
1、no python interpreter configured for the project
解決方法:setting>project Interpreter>Python Interpreter「+」をクリックしてシステムインストールのPythonを選択する
三、小プログラム
import itchat
itchat.auto_login()
itchat.send('Hello, filehelper', toUserName='filehelper')