miniconda

PIP install rasa-x takes forever

*爱你&永不变心* 提交于 2021-02-10 06:14:55
问题 I am intalling Rasa X in a Python 3.7 conda environment on Windows 10. pip version is 20.3.3. pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple It have been going on for 5-6 hours and seems to be confused: Any idea what I can do to fix this? 回答1: It is caused by the dependency resolution backtracking logic introduced in pip v20.3. (docs) A fix for now is to downgrade pip to v20.2, with: pip install --upgrade pip==20.2 回答2: Instead of downgrading pip you can also use the old

PIP install rasa-x takes forever

匆匆过客 提交于 2021-02-10 06:14:40
问题 I am intalling Rasa X in a Python 3.7 conda environment on Windows 10. pip version is 20.3.3. pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple It have been going on for 5-6 hours and seems to be confused: Any idea what I can do to fix this? 回答1: It is caused by the dependency resolution backtracking logic introduced in pip v20.3. (docs) A fix for now is to downgrade pip to v20.2, with: pip install --upgrade pip==20.2 回答2: Instead of downgrading pip you can also use the old

Unable to install perl modules via cpanm in conda environments

﹥>﹥吖頭↗ 提交于 2021-02-05 07:25:07
问题 I'm trying to install perl modules via cpanm inside conda environment with perl installed. The conda environment was build with following definition: name: perl_env channels: - bioconda - conda-forge - defaults dependencies: - perl=5.26 - perl-app-cpanminus - perl-local-lib - gcc_impl_linux-64 - gxx_linux-64 - openmpi=4.1.0 The environment results with the following packages installed: # Name Version Build Channel _libgcc_mutex 0.1 conda_forge conda-forge _openmp_mutex 4.5 1_gnu conda-forge

conda install -n base --revision 1 doesn't clean up pypi packages

别来无恙 提交于 2021-02-05 07:16:39
问题 I attempted cleaning up my base (mini)conda environment by installing revision 1 of the base environment. $ conda install -n base --revision 1 For reference, here is what revision 1 means in my case. $ conda list -n base --revisions 2019-10-24 14:29:57 (rev 0) +asn1crypto-1.2.0 +ca-certificates-2019.10.16 +certifi-2019.9.11 +cffi-1.13.0 +chardet-3.0.4 +conda-4.7.12 +conda-package-handling-1.6.0 +cryptography-2.8 +idna-2.8 +libcxx-4.0.1 +libcxxabi-4.0.1 +libedit-3.1.20181209 +libffi-3.2.1

Value error '/anaconda3/lib/libpython3.7.dylib' does not exist?

偶尔善良 提交于 2021-01-28 08:57:45
问题 so I've created a virtual environment in my iterm2 window. this is the ques I asked earlier which has not been solved yet and my app is not running is alias modeso i tried to do the whole process again but it was showing error with plistlib so that was fixed by this answer I tried this whole process again which means I did this all this before but my app was not working so i deleted my py2app and some venv's got deleted to I downloaded miniconda3 again and then it was working until it comes

IPython automatically turning on matplotlib interactive mode

a 夏天 提交于 2021-01-27 18:52:51
问题 I'm experiencing some newly odd behavior from IPython. I just had to do a clean reinstall of my miniconda, so I now have fresh IPython and Matplotlib versions. It turns out that IPython is automatically switching matplotlib to interactive mode (which has the annoying side effect of making my saved figures blank in my scripts, because they save after I close the window). Here's an example: Python 3.7.3 | packaged by conda-forge | (default, Jul 1 2019, 21:52:21) Type 'copyright', 'credits' or

InvalidArchiveError when executing conda install notebook

本秂侑毒 提交于 2021-01-22 09:19:53
问题 I have conda 4.8.1 running on windows 10 enterprise edition and it is showing me following error whenever I try to install notebook. InvalidArchiveError("Error with archive D:\\Miniconda3\\pkgs\\notebook-6.0.2-py37_0ujelie94\\pkg-notebook-6.0.2-py37_0.tar.zst. You probably need to delete and re-download or re-create this file. Message from libarchive was:\n\nCan't create '\\\\?\\D:\\Miniconda3\\pkgs\\notebook-6.0.2-py37_0\\Lib\\site-packages\\notebook\\static\\components\\MathJax\\extensions\

How to install packages with miniconda in Dockerfile?

落花浮王杯 提交于 2020-12-29 05:44:20
问题 I have a simple Dockerfile: FROM ubuntu:18.04 RUN apt-get update RUN apt-get install -y wget && rm -rf /var/lib/apt/lists/* RUN wget \ https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \ && mkdir /root/.conda \ && bash Miniconda3-latest-Linux-x86_64.sh -b \ && rm -f Miniconda3-latest-Linux-x86_64.sh \ && echo PATH="/root/miniconda3/bin":$PATH >> .bashrc \ && exec bash \ && conda --version RUN conda --version And it cannot be built. At the very last step I get /bin/sh: 1:

How to install packages with miniconda in Dockerfile?

为君一笑 提交于 2020-12-29 05:43:14
问题 I have a simple Dockerfile: FROM ubuntu:18.04 RUN apt-get update RUN apt-get install -y wget && rm -rf /var/lib/apt/lists/* RUN wget \ https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \ && mkdir /root/.conda \ && bash Miniconda3-latest-Linux-x86_64.sh -b \ && rm -f Miniconda3-latest-Linux-x86_64.sh \ && echo PATH="/root/miniconda3/bin":$PATH >> .bashrc \ && exec bash \ && conda --version RUN conda --version And it cannot be built. At the very last step I get /bin/sh: 1: