我在安装本地堆栈时遇到了困难。这是在一台新格式化的ubuntu个人电脑上。我一直收到这个错误:
(test which virtualenv || pip install --user virtualenv) &&
(test -e .venv || virtualenv .venv) &&
(test ! -e requirements.txt || (. .venv/bin/activate; pip -q install -r requirements.txt) &&
. .venv/bin/activate; PYTHONPATH=. exec python localstack/services/install.py testlibs)
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f13119c7910>: Failed to establish a new connection: [Errno -3] Try again',)': /simple/airspeed/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f13119c7b90>: Failed to establish a new connection: [Errno -3] Try again',)': /simple/airspeed/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f13119c7cd0>: Failed to establish a new connection: [Errno -3] Try again',)': /simple/airspeed/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f13119c7e10>: Failed to establish a new connection: [Errno -3] Try again',)': /simple/airspeed/
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f13119c7f50>: Failed to establish a new connection: [Errno -3] Try again',)': /simple/airspeed/
Could not find a version that satisfies the requirement airspeed==0.5.5.dev20160812 (from -r requirements.txt (line 4)) (from versions: )
No matching distribution found for airspeed==0.5.5.dev20160812 (from -r requirements.txt (line 4))有人有解决这个问题的办法吗?
发布于 2018-11-22 21:49:10
经过多次挖掘,我终于能够让它工作了。我关注这个tutorial真的很有帮助!
因此,我决定使用docker,而不是直接安装到我的电脑上。
git clone https://github.com/localstack/localstack.git
cd path/to/localstack
docker-compose up发布于 2020-06-01 16:22:23
我看得出来,你是想跑
$> localstack start这需要docker和docker-compose。
要以本机方式运行,您需要使用:
$> localstack start --host我已经一步一步地写了博客来安装和运行。你可以参考:https://medium.com/@baksh12shad/how-to-install-localstack-natively-on-ubuntu-18-04-step-by-step-ca344b7b7d78
https://stackoverflow.com/questions/53400189
复制相似问题