本文經過實踐,自行安裝了一遍python及matplotlib。html
官網下載https://www.python.org/downloads/windows/
圖是網上找的
python
若是沒有選後面的勾,環境變量得本身配linux
C:\Python27;C:\Python27\Scripts;
經常使用的pip命令方式有:
安裝:shell
pip install packageName
卸載:django
pip uninstall packageName
更新pipubuntu
pip python -m pip install
列出全部過時的包windows
pip list --outdated
升級某個包python2.7
pip install -upgrade xxx包名
批量升級某個包
新建--運行下面這個文件網站
import pip from subprocess import call for dist in pip.get_installed_distributions(): call("pip install --upgrade " + dist.project_name, shell=True)
參考
pip經常使用命令
http://jianfeihit.iteye.com/blog/1832166ui
[global] index-url =http://mirrors.aliyun.com/pypi/simple/ trusted-host = mirrors.aliyun.com disable-pip-version-check = true timeout = 120
參考:
http://blog.csdn.net/selous/article/details/53309724
http://blog.csdn.net/chenghuikai/article/details/55258957
http://topmanopensource.iteye.com/blog/2004853
新版ubuntu要求使用https源,要注意。 清華:https://pypi.tuna.tsinghua.edu.cn/simple 阿里雲:http://mirrors.aliyun.com/pypi/simple/ 中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/ 華中理工大學:http://pypi.hustunique.com/ 山東理工大學:http://pypi.sdutlinux.org/ 豆瓣:http://pypi.douban.com/simple/
pip install wheel 安裝完成後,就能夠用下面這樣了,注意後面的.whl 文件是一個本地路徑。你能夠在這個文件的當前目錄下執行下面的命令。或者輸絕對路徑也行。 pip install xxxx.whl
到哪找.whl文件?http://www.lfd.uci.edu/~gohlke/pythonlibs/
Python幾個包管理區別:pip、easy_install、eggs和wheel
1.numpy+mkl
2.scipy
3.six
4.python_dateutil
5.pyparsing
6.cycler
7.pytz
8.matplotlib
若要使用頻譜庫:
9.colorama
10.easydev
11.spectum (依賴colorama easydev)
到這個網站http://www.lfd.uci.edu/~gohlke/pythonlibs/ 下載相應的包(下載32位的,爲何?你輸入python,看下你本身裝的是32位的麼。。),而後安裝whl.
注意,不能直接 pip install numpy ,要下載whl文件安裝
這裏有個畫圖的例子,若是安裝完畢的話,運行這個代碼就能出圖了
以安裝Nummy爲例:
連接:https://sourceforge.net/projects/numpy/files/latest/download?source=files
解壓後,用命令行進入該文件目錄,依次執行:
python setup.py build
python setup.py install
便可。
再用pip list查看的時候會發現,numpy已經安裝好了。
pip install python-qt5
pycharm中配置QtDesigner http://blog.csdn.net/a359680405/article/details/45074761
實踐發現安裝好了不能啓動,緣由多是個人python是32位的,qt5 用pip默認裝的是64位的
後來去http://www.lfd.uci.edux下載qt4的32位whl包,並安裝
網上說要裝sip,到這裏下載 https://www.riverbankcomputing.com/software/sip/download 參考這個教程 和 Python SIP使用總結(Win&Linux通用)安裝了一下,後來在另一臺機器上沒裝sip同樣能跑QT。
python交互式窗口下運行以下語句,不報錯即說明安裝成功
import PyQt4 from PyQt4 import QtCore
配置pycharm成功了
C:\Python27\Lib\site-packages\PyQt4\designer.exe $FileDir$
C:\Python27\python.exe C:\Python27\Lib\site-packages\PyQt4\uic\pyuic.py -x $FileName$ -o $FileNameWithoutExtension$.py 注意,要加-x, 一開始沒加,因此無法自動執行 $FileDir$
Django 環境搭建
Django視頻教程
臺灣輔仁大學:Python Django基礎視頻課程
使用Pycharm建立一個Django項目
python 目錄 Python27\Lib\site-packages 建一個文件 sitecustomize.py
內容寫:
import sys
sys.setdefaultencoding('gb2312')
Python SIP使用總結(Win&Linux通用)
pyQt4 安裝
ImportError: DLL load failed: 找不到指定的模塊 另一個鏈接