1
sosu72 2017-07-01 04:13:20 +08:00
-c
|
2
hugo775128583 2017-07-01 04:21:55 +08:00 via Android
anaconda search
|
3
hu6360567 2017-07-01 07:31:11 +08:00 via iPhone
conda-forge
|
4
congeec 2017-07-01 08:57:53 +08:00
就用 pip,conda 这个发行版有 pip 的
|
5
jahan OP @sosu72
@hugo775128583 @hu6360567 感谢提示。 conda install -c 这个是从 anaconda 源里面选择吧,可是 flask-notifications ( https://flask-notifications.readthedocs.io/en/latest/不在 anaconda 里面,在 pypi 里面。 anaconda search 找不到这个 flask-notifications conda-forge:conda config --add channels 读了 conda-forge 的文档,感觉这个就是添加源的,问题是不知道 pypi 的源怎么写地址? 问题很 low,谢谢大家指点。 |
8
jahan OP @congeec pip install Flask-Notifications
Could not find a version that satisfies the requirement flask-notifications. |
9
sosu72 2017-07-01 09:32:43 +08:00
conda create --name XXXX python=x flask-notifications
|
10
est 2017-07-01 09:55:21 +08:00
miniconda/bin/pip install flask-notifications
miniconda/bin/python -m pip install flask-notifications |
11
jahan OP |
13
est 2017-07-01 10:20:46 +08:00
另外 flask-notifications 这个库看上去写得不是特别烂也是一般烂了。
|
16
ipwx 2017-07-01 10:40:41 +08:00
pip install 呗,还能怎么样
|
17
xiaozizayang 2017-07-01 10:41:41 +08:00 via Android
source 进对应的版本 直接 pip 安装的话就是安装在对应的虚拟环境
|
18
hu6360567 2017-07-01 16:43:57 +08:00 via iPhone
conda 是一个类似 pypi 的库管理,conda-forge 是 conda 的一个社区维护的列表,类似于 brew cask 之于 brew。一般情况下 forge 已经包含很多常用的库,可以尝试用 conda 直接安装
|
19
iwhales 2019-03-08 16:07:13 +08:00
If a package is not available from conda or Anaconda.org, you may be able to find and install the package with another package manager like pip.
详见 https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-pkgs.html#installing-non-conda-packages |