我在bigrock上买了一个域名和一个共享服务器(linux)。我使用Flask在本地计算机上构建了一个服务器,我希望将它作为CGI部署在共享服务器上。但是,我无法在共享服务器上安装flask。
下载Flask并在flask目录中运行以下内容:
python setup.py install
我收到以下错误:
running install
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 30] Read-only file system: '/usr/lib/python2.6/site-packages/test-easy-install-655838.write-test'
The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:
/usr/lib/python2.6/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 python setup.py install
并获得以下输出:
-bash: sudo: command not found
然后我试试,
apt-get install sudo
并获得以下输出:
-bash: apt-get: command not found
那么如何在此Web服务器上安装flask? Web服务器中提到了对python的支持,我可以使用ssh进行访问。
答案 0 :(得分:0)
注意:这不是一个新的解决方案,而是详细阐述了zeridon的一部分答案,并且与BigRock Linux共享服务器更相关。
打开终端并登录:
对于Windows用户: 安装PuTTY client。安装完成后,打开应用程序并输入主机名(或IP地址)作为yourusername@yourdomain.com并打开连接。它将打开一个终端并提示您输入密码。输入您的密码,然后点击“输入”键。按钮。
Mac和Linux用户已经安装了终端,所以只需打开它即可。
制作virtualenv:
要使用名称' virenv'创建一个virtuanenv,请输入以下命令:
virtualenv virenv
这将创建一个名为' virenv'的目录。并将与pip一起制作virtualenv。
激活virtualenv并安装模块:
要激活所做的virtualenv,请输入以下命令:
source virenv/bin/activate
激活virtuanenv后,输入此命令安装模块。
pip install <module_name>
(例如,要安装烧瓶,请输入pip install flask
。)
脚本中的用法:
获取virtualenv的路径:
激活virtualenv后,输入which python
,它将提供virtualenv的路径。它通常类似于&#39; / home // virenv / bin / python&#39;。
要在脚本中使用virtualenv,请将!#/usr/bin/python
替换为!#<path to virtualenv>
。
(例如,如果virtuanenv路径是&#39; / home / username / virenv / bin / python&#39;,请在脚本顶部使用#!/home/username/virenv/bin/python
。)