我想在heroku上安装aiohttp
包
但我有以下内容:
Collecting aiohttp
Using cached aiohttp-3.1.0-cp36-cp36m-manylinux1_x86_64.whl
Collecting yarl<2.0,>=1.0 (from aiohttp)
Using cached yarl-1.1.1-cp36-cp36m-manylinux1_x86_64.whl
Collecting multidict<5.0,>=4.0 (from aiohttp)
Using cached multidict-4.1.0-cp36-cp36m-manylinux1_x86_64.whl
Collecting async-timeout<3.0,>=1.2 (from aiohttp)
Using cached async_timeout-2.0.1-py3-none-any.whl
Collecting idna-ssl>=1.0 (from aiohttp)
Using cached idna-ssl-1.0.1.tar.gz
Complete output from command python setup.py egg_info:
/app/.heroku/python/lib/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'tests_require'
warnings.warn(msg)
/app/.heroku/python/lib/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'install_requires'
warnings.warn(msg)
/app/.heroku/python/lib/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'python_requires'
warnings.warn(msg)
/app/.heroku/python/lib/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'include_package_data'
warnings.warn(msg)
/app/.heroku/python/lib/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'zip_safe'
warnings.warn(msg)
usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: -c --help [cmd1 cmd2 ...]
or: -c --help-commands
or: -c cmd --help
error: invalid command 'egg_info'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-uyayoban/idna-ssl/
当我尝试安装grequests时发生了同样的事情 那么如何在heroku上安装其中一个软件包,还是有其他方法可以从heroku发出异步http请求?