我确实在我的根目录中安装了Flask,但每当我更改目录并运行virutalenv venv尝试通过pip安装烧瓶安装烧瓶时,我收到以下错误
bash: /home/phillipsk/rampup/sql/venv/bin/easy_install: /home/phillipsk/rampup/webapp/sql/venv/bin/python: bad interpreter: No such file or directory
以下是venv目录的内容
activate activate.csh activate.fish activate_this.py easy_install easy_install-2.7 pip pip2 pip2.7 python python2 python2.7
我可以运行/home/phillipsk/rampup/webapp/sql/venv/bin/python
并打开python解释器
Python 2.7.6
这是
的ls -l/家庭/ phillipsk /斜升/ web应用/ SQL / VENV / bin中/蟒
-rwxr-xr-x 1 root root 3349512 Aug 15 13:11 /home/phillipsk/rampup/webapp/sql/venv/bin/python
这是我尝试运行pip install flask
> (venv)phillipsk@phillips:~/rampup/webapp/sql/venv/bin$ pip install flask Downloading/unpacking flask Cleaning up... Exception: Traceback
> (most recent call last): File
> "/home/phillipsk/rampup/webapp/sql/venv/local/lib/python2.7/site-packages/pip/basecommand.py",
> line 122, in main
> status = self.run(options, args) File "/home/phillipsk/rampup/webapp/sql/venv/local/lib/python2.7/site-packages/pip/commands/install.py",
> line 278, in run
> requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle) File
> "/home/phillipsk/rampup/webapp/sql/venv/local/lib/python2.7/site-packages/pip/req.py",
> line 1153, in prepare_files
> location = req_to_install.build_location(self.build_dir, not self.is_download) File
> "/home/phillipsk/rampup/webapp/sql/venv/local/lib/python2.7/site-packages/pip/req.py",
> line 218, in build_location
> _make_build_dir(build_dir) File "/home/phillipsk/rampup/webapp/sql/venv/local/lib/python2.7/site-packages/pip/req.py",
> line 1527, in _make_build_dir
> os.makedirs(build_dir) File "/home/phillipsk/rampup/webapp/sql/venv/lib/python2.7/os.py", line
> 157, in makedirs
> mkdir(name, mode) OSError: [Errno 13] Permission denied: '/home/phillipsk/rampup/webapp/sql/venv/build'
>
> Storing debug log for failure in /home/phillipsk/.pip/pip.log
sudo pip install flask
确实有效,但无论在运行pip命令之后我都立即进入python解释器而import flask
没有成功
答案 0 :(得分:1)
作为临时解决方案,请尝试更改 venv 文件夹及所有基础文件和文件夹的所有权:
sudo chown -R yourusername:yourusersgroup venv
然后重新激活virtualenv并尝试在没有 sudo 的情况下安装flask。
顺便说一下。如果你在创建virtualenvs时使用 sudo ,你就不应该这样做。在没有 sudo 的情况下运行 virtualenv / path / to / virtualenv 并以普通用户身份登录,激活它,然后 pip install 。希望这会有所帮助。
作为 virtualenvwrapper 项目的旁注。它可能会让你将来更轻松。 http://virtualenvwrapper.readthedocs.org/en/latest/
答案 1 :(得分:0)
该目录由root拥有, 你自己说了
-rwxr-xr-x 1 root root 3349512 Aug 15 13:11 /home/phillipsk/rampup/webapp/sql/venv/bin/python
所以要做到这一点
sudo pip install flask