2

我正在使用 Merverick OSX。我已将 Python 3.3.3 安装到我的计算机中,我想安装 Flask

当我在终端中输入这个

$sudo easy_install virtualenv

终端向我显示此错误

error: can't create or remove files in install directory

The following error occurred while trying to add or remove files in the
installation directory:

[Errno 13] Permission denied: '/Library/Python/2.7/site-packages/test-easy-install-    
373.write-test'

The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:

/Library/Python/2.7/site-packages/

Perhaps your account does not have write access to this directory?  If the
installation directory is a system-owned directory, you may need to sign in
as the administrator or "root" account.  If you do not have administrative
access to this machine, you may wish to choose a different installation
directory, preferably one that is listed in your PYTHONPATH environment
variable.

For information on other options, you may wish to consult the
documentation at:

http://peak.telecommunity.com/EasyInstall.html

Please make the appropriate changes for your system and try again.

所以我以root用户身份访问,然后输入

$sudo easy_install virtualenv

它是这样说的,但是有一个关于 *.egg 的警告那是什么?出了什么问题?以及如何解决?

Last login: Wed Nov 13 16:10:17 on ttys000
Tammarats-MacBook-Air:~ Team$ su root
Password:
sh-3.2# $sudo easy_install virtualenv
Searching for virtualenv
Reading http://pypi.python.org/simple/virtualenv/
Best match: virtualenv 1.10.1
Downloading https://pypi.python.org/packages/source/v/virtualenv/virtualenv-   
1.10.1.tar.gz#md5=3a04aa2b32c76c83725ed4d9918e362e
Processing virtualenv-1.10.1.tar.gz
Running virtualenv-1.10.1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-  
Nl7IVa/virtualenv-1.10.1/egg-dist-tmp-QGa1nR
warning: no files found matching '*.egg' under directory 'virtualenv_support'
warning: no previously-included files matching '*' found under directory  
'docs/_templates'
warning: no previously-included files matching '*' found under directory 'docs/_build'
Adding virtualenv 1.10.1 to easy-install.pth file
Installing virtualenv script to /usr/local/bin
Installing virtualenv-2.7 script to /usr/local/bin

Installed /Library/Python/2.7/site-packages/virtualenv-1.10.1-py2.7.egg
Processing dependencies for virtualenv
Finished processing dependencies for virtualenv
sh-3.2# 
4

3 回答 3

2

每次遇到这样无法理解的事情,都要仔细阅读说明。你有没有找到“WARNING”,它告诉你这不是错误;和

  Installed /Library/Python/2.7/site-packages/virtualenv-1.10.1-py2.7.egg    
  Processing dependencies for virtualenv
  Finished processing dependencies for virtualenv

说实话,你已经成功安装了virtualenv。现在你可以根据 Flask 给出的文档,学习 Flask;

于 2013-11-13T09:47:52.273 回答
1

一个问题是路径上的 easy_install 是 Apple 为 python 2.7 提供的一个,所以你已经为 python 2.7 安装了烧瓶

您需要指定 python 3.3 版本的显式路径。

virtualenv 也是 3.3 的一部分,请参阅python 文档,因此您不需要安装它。

于 2013-11-13T22:36:34.570 回答
-1

要安装 vertualenv,请运行以下命令:
sudo apt-get install python-virtualenv
和 Flask 安装遵循以下命令:http: //flask.pocoo.org/docs/installation/
http://blog.miguelgrinberg.com/post/the- flask-mega-tutorial-part-i-hello-world

于 2013-11-13T10:05:08.473 回答