python ----python的安裝
######python的原始碼編譯安裝######
#安裝平臺
-Linux
-官網下在原始碼安裝包(python3.6)
-安裝編譯過程中需要的依賴包:gcc,zlib,zlib-devel,openssl-devel,readline,readline-devel
-進入解壓的安裝包進行編譯
cd /opt/Python3-*/
./configure --prefix=/usr/local/python3.6 --with-ssl
make && make install
-新增python3命令到系統環境變數裡
#方法1:
echo $PATH
#臨時新增
export PATH='python3命令所在的路徑:$PATH'
#永久新增
echo export PATH='python3命令所在的路徑:$PATH' >> ~/.bashrc
#重新讀取配置檔案:
source ~/.bashrc
#方法2:
做軟連結 ls -n /uer/local/python3.6/bin/python3.6 /usr/local/bin
##測試是否安裝成功?
檢視是否含有python3.6
相關文章
- 【python】python安裝Python
- python安裝Python
- Python pip的安裝及解除安裝Python
- Python安裝教程(非常詳細) python如何安裝使用Python
- Python的安裝和使用Python
- python安裝simplejsonPythonJSON
- python 安裝 impalaPython
- python 安裝protobufPython
- 解除安裝 PythonPython
- Python安裝教程Python
- python安裝opencvPythonOpenCV
- Docker安裝PythonDockerPython
- Docker 安裝 pythonDockerPython
- python安裝mysqlclientPythonMySqlclient
- Python中的selenium的安裝Python
- python gdal 安裝使用(Windows, python 3.6.8)PythonWindows
- brew 安裝python3:如何使用brew安裝Python3Python
- python直譯器的安裝Python
- python的requests怎麼安裝Python
- python庫批量安裝的方法Python
- python 安裝模組的方法Python
- Anaconda安裝Python的seaborn庫Python
- python Mqtt 的安裝及使用PythonMQQT
- Python安裝graphics庫Python
- linux下安裝pythonLinuxPython
- Python 3安裝MySQLdbPythonMySql
- 【Python】安裝配置gymPython
- Python uWSGI 安裝配置Python
- 安裝python並使用Python
- Python 3安裝wxPythonPython
- 【Python】pyenv 安裝方式Python
- CentOS Python 3.12安裝CentOSPython
- python 模組安裝Python
- python安裝部署(3.12)Python
- python如何安裝OpenCV?PythonOpenCV
- Python安裝教程分享Python
- Python模組安裝Python
- windows + python + dlib 安裝WindowsPython