生信喵 发表于 2024-7-28 10:49:45

【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]
查看完整版本: 【python项目安装】Some packages may not be found!