背景
最近安装python项目
[https://github.com/Xinglab/CLAM](https://github.com/Xinglab/CLAM)
其中
python setup.py install
报错
Download error on [https://pypi.org/simple/pybedtools/:](https://pypi.org/simple/pybedtools/:) [Errno 101] Network is unreachable -- Some packages may not be found!
Couldn't find index page for 'pybedtools' (maybe misspelled?)
解决方案
将改行代码替换为
pip install -e .
即可成功安装。 |