python開發環境搭建(windows版)

2022-02-16 22:18:41 字數 2335 閱讀 8179

編者按:

學習python需要的是搭建一套可用的開發環境,在開發的過程中,windows因為很多編譯工具不能很好的去安裝支援編譯環境,所以會有很多絆腳的地方。本文嘗試在windows環境下面整理安裝一些比較難安裝的第三方模組庫。以幫助更多的朋友學習之便。

1.python27和python33、python34、python35環境的同時併發:

在學習的過程中,有一些模組在python2.7版本上還沒有相容到python3版本,比如操作mysql的模組mysql。所以需要我們的在win下面併發的搭建多個版本的python環境。就我所了解目前生產環境下面使用python3.4版本的居多(除了使用python2版本之外),但為了嘗試python3版本的一些新特性和從版本2到3的過渡,所以這裡嘗試構建python3版本的3個版本,以供參考!

python2.7.11 win32:

python2.7.11 win64:

python3.3.5 win32:

python3.3.5 win64:

python3.4.4 win32:

python3.4.4 win64:

python3.5.1 win32:

python3.5.1 win64:

python版本安裝: 

在安裝python各個版本的時候使用這樣目錄:

路徑            python執行程式重新命名

path/python27    python2.exe python27.exe pip2.exe pip27.exe easy_install2.exe easy_install27.exe

path/python33      python33.exe pip33.exe easy_install33.exe

path/python34      python34.exe pip34.exe easy_install34.exe

path/python35       python3.exe python35.exe pip35.exe easy_install35.exe

環境變數設定:

python27=d:\program files\python27\;d:\program files\python27\scripts;d:\program files\python27\lib;d:\program files\python27\lib\site-packages;d:\program files\python27\dlls

python33=d:\program files\python33\;d:\program files\python33\scripts;d:\program files\python33\lib;d:\program files\python33\lib\site-packages;d:\program files\python33\dlls

python34=d:\program files\python34\;d:\program files\python34\scripts;d:\program files\python34\lib;d:\program files\python34\lib\site-packages;d:\program files\python34\dlls

python35=d:\program files\python35\;d:\program files\python35\scripts;d:\program files\python35\lib;d:\program files\python35\lib\site-packages;d:\program files\python35\dlls

2. python27、python34、python35在安裝的時候預設將pip工具進行安裝,包括setuptools也一併安裝,但在python33中需要自行安裝

首先獲取setuptools:

解壓之後使用python33 setup.py install 進行安裝

其次獲取pip:

解壓之後使用python33 setup.py install 進行安裝

3. 編譯環境:

python3.x暫時沒有解決上述問題。留待後續補充!

4.常用模組安裝:

windows下配置相關python開發環境-常用模組

windows下使用python開發環境常見問題解決集錦:

1. python35&&python27在windows啟動時報錯解決方案

2. python version 3.3 required, which was not found in the registry

3. windows下面pip、easy_install無法使用(fatal error to launcher)

Win7 Python開發環境搭建

anaconda包括python基礎包與一系列科學計算包,安裝後不用再單獨安裝python。2 安裝pycharm pycharm是python開發ide。3 使用pip安裝python元件 pip為python元件管理命令,anaconda scripts目錄下,我的環境上路徑如下 c progr...

win7如何搭建Python開發環境

步驟 2 配置python路徑 具體實施 1 python 選擇相應的python版本,我選擇的是3.3.4 2 win e 系統屬性 高階系統設定 環境變數 系統變數 path 編輯 切換為英文輸入法 對path追加python的安裝目錄 幾秒後 在cmd下敲python enter 顯示 證明安...

python開發環境搭建

windows 安裝執行即可 linux 1.linux 預設安裝python,建議安裝ipython 2.sudo apt get install ipython安裝ipython 可以自動補齊 3.使用vim來建立.py檔案 輸入 python 即可檢視當前版本 ipython是python的互...