Conda 安装 pygmaps
Conda install pygmaps
我正在尝试将 pygmaps 添加到学校项目中。我尝试通过
添加它
Conda install pygmaps
但是 returns
PackageNotFoundError: Packages missing in current channels:
- pygmaps
We have searched for the packages in the following channels:
- https://repo.continuum.io/pkgs/main/win-64
- https://repo.continuum.io/pkgs/main/noarch
- https://repo.continuum.io/pkgs/free/win-64
- https://repo.continuum.io/pkgs/free/noarch
- https://repo.continuum.io/pkgs/r/win-64
- https://repo.continuum.io/pkgs/r/noarch
- https://repo.continuum.io/pkgs/pro/win-64
- https://repo.continuum.io/pkgs/pro/noarch
- https://repo.continuum.io/pkgs/msys2/win-64
- https://repo.continuum.io/pkgs/msys2/noarch
在当前的实验室设置中,pip 和 conda 是安装新包的唯一方法。我有什么想念的吗?
感谢您的帮助!
不幸的是,pygmaps
是 listed on pypi, but not available there for download. The actual code can be downloaded from the Google code site as a .tar.gz
file 并手动安装,甚至在许可允许的情况下直接在您的源代码中使用。如果你有 运行 pip
.
的权限,你应该有修改默认安装目录的权限
pygmaps
似乎不再受支持,因此您可能需要查看扩展分支 pygmaps-extended
,pypi
上什至没有提到它,但有一个有效的 setup.py
文件。因此,以下应该有效:
pip install git+https://github.com/thearn/pygmaps-extended
这个分支也有一段时间没有受到关注,但它确实有比原来更新的提交。
此答案中的信息是从 的答案中提炼出来的。
我正在尝试将 pygmaps 添加到学校项目中。我尝试通过
添加它Conda install pygmaps
但是 returns
PackageNotFoundError: Packages missing in current channels:
- pygmaps
We have searched for the packages in the following channels:
- https://repo.continuum.io/pkgs/main/win-64
- https://repo.continuum.io/pkgs/main/noarch
- https://repo.continuum.io/pkgs/free/win-64
- https://repo.continuum.io/pkgs/free/noarch
- https://repo.continuum.io/pkgs/r/win-64
- https://repo.continuum.io/pkgs/r/noarch
- https://repo.continuum.io/pkgs/pro/win-64
- https://repo.continuum.io/pkgs/pro/noarch
- https://repo.continuum.io/pkgs/msys2/win-64
- https://repo.continuum.io/pkgs/msys2/noarch
在当前的实验室设置中,pip 和 conda 是安装新包的唯一方法。我有什么想念的吗?
感谢您的帮助!
不幸的是,pygmaps
是 listed on pypi, but not available there for download. The actual code can be downloaded from the Google code site as a .tar.gz
file 并手动安装,甚至在许可允许的情况下直接在您的源代码中使用。如果你有 运行 pip
.
pygmaps
似乎不再受支持,因此您可能需要查看扩展分支 pygmaps-extended
,pypi
上什至没有提到它,但有一个有效的 setup.py
文件。因此,以下应该有效:
pip install git+https://github.com/thearn/pygmaps-extended
这个分支也有一段时间没有受到关注,但它确实有比原来更新的提交。
此答案中的信息是从