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