Ubuntu16 04下安裝Uwsgi失敗解決辦法

2021-08-29 13:57:21 字數 740 閱讀 3014

今天安裝uwsgi屢次失敗,找了很多辦法終於解決了。

報錯誤:

command 「/usr/bin/python3 -u -c 「import setuptools, tokenize;file=』/tmp/pip-install-uadvmvn5/uwsgi/setup.py』;f=getattr(tokenize, 『open』, open)(file);code=f.read().replace(』\r\n』, 『\n』);f.close();exec(compile(code,file, 『exec』))」 install --record /tmp/pip-record-vervgyau/install-record.txt --single-version-externally-managed --compile」 failed with error code 1 in /tmp/pip-install-uadvmvn5/uwsgi/

解決辦法:

1.apt-get install python3-dev

2.解除安裝你的gcc版本,安裝為4.7,我也不知道為什麼,改為4.7後一次成功了

apt-get install gcc-4.7

rm /usr/bin/gcc

ln -s /usr/bin/gcc-4.7 /usr/bin/gcc

3.pip install uwsgi

這樣就可以成功安裝了

ubuntu16 04下安裝boost環境

最簡單的方法 進入linux系統後,按ctrl alt t進入終端,然後輸入 sudo apt cache search boost 你將看到很多檔案資訊,找到乙個檔案叫 libboost dev,直接安裝此檔案即可 sudo apt get install libboost dev 這樣就安裝成功...

ubuntu16 04下安裝scrapy框架

一.按照官方文件的說明,安裝scrapy 需要以下程式或者庫 1 python 2.7 2 lxml。most linux distributions ships prepackaged versions of lxml.otherwise refer to 3 openssl。this comes...

ubuntu16 04下安裝mysql詳細步驟

1 如果要搭建伺服器先去購買乙個雲主機,比如阿里雲 京東雲 新網等等都有賣。這裡推薦使用京東雲伺服器,因為最近在搞活動。一元可體驗兩個月 可能現在活動已經過了,但在京東雲裡有免費領乙個月的,學生機也有88元一年 第二步 在伺服器裡安裝mysql 先弄完郭神裡的步驟再看這裡 通過郭神那裡的簡單介紹,你...