conda

conda install -c conda-forge tensorflow just stuck in Solving environment

妖精的绣舞 提交于 2021-01-03 08:31:25
问题 I am trying to run this statement in MacOS. conda install -c conda-forge tensorflow It just stuck at the Solving Environment: Never finish. $ conda --version conda 4.5.12 回答1: On win10 I waited about 5-6 minutes but it depends of the number of installed python packages and your internet connection. Also you can install it via Anaconda Navigator 回答2: Nothing worked untill i ran this in conda terminal: conda upgrade conda Note that this was for poppler (conda install -c conda-forge poppler) 回答3

Conda install screwed up my environment. Can I undo it?

北城余情 提交于 2021-01-03 04:32:32
问题 I tried installing rpy2 so that I could work with R files ( .rda ) using conda install -c r rpy2 , and it totally screwed up my environment. For example: 1) When I try importing pandas , I get this error: AttributeError: module 'pandas' has no attribute 'core' 2) When I try importing matplotlib , I get this error: AttributeError: module 'matplotlib' has no attribute 'artist' I wasn't having these issues before I installed this package. Is there a way to undo what I just did - as if I never

Conda install screwed up my environment. Can I undo it?

折月煮酒 提交于 2021-01-03 04:31:21
问题 I tried installing rpy2 so that I could work with R files ( .rda ) using conda install -c r rpy2 , and it totally screwed up my environment. For example: 1) When I try importing pandas , I get this error: AttributeError: module 'pandas' has no attribute 'core' 2) When I try importing matplotlib , I get this error: AttributeError: module 'matplotlib' has no attribute 'artist' I wasn't having these issues before I installed this package. Is there a way to undo what I just did - as if I never

Conda install screwed up my environment. Can I undo it?

会有一股神秘感。 提交于 2021-01-03 04:31:05
问题 I tried installing rpy2 so that I could work with R files ( .rda ) using conda install -c r rpy2 , and it totally screwed up my environment. For example: 1) When I try importing pandas , I get this error: AttributeError: module 'pandas' has no attribute 'core' 2) When I try importing matplotlib , I get this error: AttributeError: module 'matplotlib' has no attribute 'artist' I wasn't having these issues before I installed this package. Is there a way to undo what I just did - as if I never

Conda install screwed up my environment. Can I undo it?

依然范特西╮ 提交于 2021-01-03 04:30:38
问题 I tried installing rpy2 so that I could work with R files ( .rda ) using conda install -c r rpy2 , and it totally screwed up my environment. For example: 1) When I try importing pandas , I get this error: AttributeError: module 'pandas' has no attribute 'core' 2) When I try importing matplotlib , I get this error: AttributeError: module 'matplotlib' has no attribute 'artist' I wasn't having these issues before I installed this package. Is there a way to undo what I just did - as if I never

Best practices for (bio)conda versions in Snakemake wrappers?

醉酒当歌 提交于 2020-12-31 15:14:43
问题 What would be best environment.yml practices for specifying packages in Snakemake wrappers using conda? I understand that the channels should be: channels: - conda-forge - bioconda - base However, what is a good choice for specifying packages? Do I specify no version? Full versions? Using full versions has led to using infinite/super long conda environment resoultion problems before. However, not pinning versions gives the risk of implicitely upgrading to an incompatible version of a package.

Best practices for (bio)conda versions in Snakemake wrappers?

六眼飞鱼酱① 提交于 2020-12-31 15:04:55
问题 What would be best environment.yml practices for specifying packages in Snakemake wrappers using conda? I understand that the channels should be: channels: - conda-forge - bioconda - base However, what is a good choice for specifying packages? Do I specify no version? Full versions? Using full versions has led to using infinite/super long conda environment resoultion problems before. However, not pinning versions gives the risk of implicitely upgrading to an incompatible version of a package.

Cannot activate Conda environment from subprocess

你说的曾经没有我的故事 提交于 2020-12-31 01:52:17
问题 I am building an Electron app (running an Angular application) which acts as the User Interface for a python program underneath. The python program uses anaconda for package management (I am using miniconda for development). When the app boots up, it checks whether the required conda environment exists, and if not, creates it. The following code is part of a Service which is responsible for managing the python program. public doEnvironmentSetup() { let stdOutSub = new Subject<string>(); let

Cannot activate Conda environment from subprocess

ε祈祈猫儿з 提交于 2020-12-31 01:46:05
问题 I am building an Electron app (running an Angular application) which acts as the User Interface for a python program underneath. The python program uses anaconda for package management (I am using miniconda for development). When the app boots up, it checks whether the required conda environment exists, and if not, creates it. The following code is part of a Service which is responsible for managing the python program. public doEnvironmentSetup() { let stdOutSub = new Subject<string>(); let

Cannot activate Conda environment from subprocess

旧城冷巷雨未停 提交于 2020-12-31 01:42:38
问题 I am building an Electron app (running an Angular application) which acts as the User Interface for a python program underneath. The python program uses anaconda for package management (I am using miniconda for development). When the app boots up, it checks whether the required conda environment exists, and if not, creates it. The following code is part of a Service which is responsible for managing the python program. public doEnvironmentSetup() { let stdOutSub = new Subject<string>(); let