在 ubuntu 中安裝 python3.5、 tornado、 pymysql
一、在 ubuntu 中安裝 python3.5
1、首先,在系統中是自帶python2.7的。不要解除安裝,因為一些系統的東西是需要這個的。python2.7和python3.5是可以共存的。
命令如下(已經在阿里雲的ubuntu中測試):
apt-get install Python-software-properties
apt-get install software-properties-common
sudo add-apt-repository ppa:fkrull/deadsnakes //add-apt-repository 是需要上方2個包支援的。
sudo apt-get update
sudo apt-get install python3.5
sudo cp /usr/bin/python /usr/bin/python_bak //先備份
sudo rm /usr/bin/python //刪除
sudo ln -s /usr/bin/python3.5 /usr/bin/python
最後一步: python –version //檢查版本是否正確
二、安裝 tornado
推薦手動下載安裝。
1、首先在官網上下載
http://www.tornadoweb.org/en/stable/
4.1版本地址 :https://pypi.python.org/packages/source/t/tornado/tornado-4.1.tar.gz
下載後直接到下載目錄
tar xvzf tornado-4.1.tar.gz
cd tornado-4.1
python setup.py build
sudo python setup.py install
或者直接安裝:
1.easy_install tornado //會出現各種依賴沒有安裝 ,按照提示一個一個安裝
2.apt-get install python-setuptools
好吧,我沒有安裝成功!!!
還是推薦下載安裝,簡單方便.
三、安裝 pymysql
1、pip install PyMySQL
好吧,我發現我裝的阿里雲的伺服器pip沒有,那首先就先安裝 pip
2、apt-get install python-pip
3、繼續安裝
@_@ 還是麼有安裝成功! 算了,下下來直接安裝吧。
下載地址 :
https://pypi.python.org/packages/source/P/PyMySQL3/PyMySQL3-0.5.tar.gz
tar xvzf PyMySQL3-0.5.tar.gz
cd PyMySQL-0.7.9/
python setup.py build
python setup.py install
OK!! 3個東西都安裝完畢。之後會開源一個做的玩的APP,用tornado做web伺服器,mysql做為資料庫,釋出在阿里雲伺服器上。
相關文章
- Ubuntu如何解除安裝Python3.5UbuntuPython
- 在Ubuntu/Mint中安裝 SpotifyUbuntu
- PyMySQL模組安裝MySql
- 在Ubuntu desktop中安裝gitUbuntuGit
- 在Ubuntu/Fedora/CentOS中安裝GitblitUbuntuCentOSGit
- 在Ubuntu 15.04中安裝Ruby on RailsUbuntuAI
- 【Ubuntu】在Ubuntu上安裝微信Ubuntu
- 在Ubuntu安裝MySqlUbuntuMySql
- Linux下安裝pymysqlLinuxMySql
- 在Ubuntu中安裝Docker和docker的使用UbuntuDocker
- Ubuntu在Vbox中安裝增強功能Ubuntu
- 在ubuntu中安裝單機Hadoop(三)UbuntuHadoop
- 在 Ubuntu 中安裝 Visual Studio CodeUbuntu
- 怎樣在Ubuntu 14.04中安裝JavaUbuntuJava
- 在pycharm安裝MySQLdb庫和pymysql庫的區別PyCharmMySql
- windows下安裝tornadoWindows
- 在 Ubuntu 安裝 ComposerUbuntu
- Ubuntu中安裝DockerUbuntuDocker
- ubuntu 中安裝 RedisUbuntuRedis
- Ubuntu中安裝OpenSSLUbuntu
- 教你在Ubuntu中安裝Gscan2PDF 2.5.5Ubuntu
- 在Vmware Player 7中安裝Ubuntu14.04Ubuntu
- 在 Ubuntu 中安裝 Unity 8 桌面預覽版UbuntuUnity
- 在Ubuntu / Ubuntu Kylin下安裝和解除安裝 NodepadqqUbuntu
- 在Ubuntu上安裝MariaDBUbuntu
- 在ubuntu supervisor 安裝 配置Ubuntu
- 在 Ubuntu 上安裝 Budgie 桌面Ubuntu
- 在Ubuntu上安裝openssh(轉)Ubuntu
- 在virtualbox上安裝ubuntuUbuntu
- 在 Ubuntu 14.04 上安裝 Ubuntu Tweak 0.8.8Ubuntu
- ubuntu中安裝谷歌拼音Ubuntu谷歌
- 持續化整合工具 Jenkins 在 Ubuntu 中安裝JenkinsUbuntu
- 在 Ubuntu中安裝SAP以及連結到 Citrix ServerUbuntuServer
- 在Ubuntu Server 中安裝圖形使用者介面UbuntuServer
- 【Python篇】---Python3.5在Centoos的安裝教程--超實用Python
- VMware 中解除安裝安裝Ubuntu 20.04.1 ——Ubuntu系統配置(一)Ubuntu
- 在Ubuntu 18.04中安裝Wine QQ、微信、TIM,並安裝圖示托盤Ubuntu
- 在ubuntu中安裝與配置zsh與oh-my-zshUbuntu