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.

したがって、ルートユーザーとしてアクセスしてから、次のように入力します

$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

このように理解できないものに遭遇するたびに、詳細に説明を読む必要があります。と

  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

vertualenv をインストールするには、次のコマンドを実行します:
sudo apt-get install python-virtualenv
と Flask のインストール: http://flask.pocoo.org/docs/installation/ または
http://blog.miguelgrinberg.com/post/the-フラスコ-メガ-チュートリアル-パート-i-ハローワールド.

于 2013-11-13T10:05:08.473 に答える