miniconda

Matplotlib cannot find basic fonts

我是研究僧i 提交于 2019-11-28 17:48:32
I am using matplotlib version 2.0.0 on Python 3 in a miniconda virtual environment. I am working on a unix scientific computing cluster where I don't have root privileges. I am generally executing python code through an ipython notebook. If I do a basic command such as: import matplotlib.pyplot as plt plt.scatter([1,5], [1,5]) I get an error message: path_to_miniconda/miniconda3/envs/conda34/lib/python3.4/site- packages/matplotlib/font_manager.py:1297: UserWarning: findfont: Font family ['sans-serif'] not found. Falling back to DejaVu Sans (prop.get_family(), self.defaultFamily[fontext])) I

Conda command not found

旧时模样 提交于 2019-11-28 16:04:40
I've installed Miniconda and have added the environment variable export PATH="/home/username/miniconda3/bin:$PATH" to my .bachrc and .bash_profile but still can't run any conda commands in my terminal. Am I missing another setup? I'm using zsh by the way. olivrg If you're using zsh and it has not been set up to read .bashrc, you need to add the Miniconda directory to the zsh shell PATH environment variable. Add this to your .zshrc : export PATH="/home/username/miniconda/bin:$PATH" Make sure to replace /home/username/miniconda with your actual path . Save, exit the terminal and then reopen the

how to install anaconda / miniconda on Linux silently

孤街浪徒 提交于 2019-11-28 10:50:28
How do I install the anaconda / miniconda without prompts on Linux command line? Is there a way to pass -y kind of option to agree to the T&Cs, suggested installation location etc. by default? can be achieved by bash miniconda.sh -b (thanks @darthbith ) The command line usage for this can only be seen with -h flag but not --help , so I missed it. AFAIK pyenv let you install anaconda / miniconda (after successful instalation) pyenv install --list pyenv install miniconda3-4.3.30 来源: https://stackoverflow.com/questions/49338902/how-to-install-anaconda-miniconda-on-linux-silently

Install Jupyter Notebook on Miniconda

你说的曾经没有我的故事 提交于 2019-11-28 06:21:32
I installed Miniconda and I'm trying to use Jupyter Notebook with it but haven't been able to do so. After installing miniconda I ran the jupyter notebook command on my terminal and jupyter wasn't installed. I went ahead and installed it with the conda install jupyter . However, I once again ran jupyter notebook on my terminal and got the following console error: Emilios-MacBook-Pro:documents emilioramirezeguia$ jupyter notebook Traceback (most recent call last): File "/Users/emilioramirezeguia/miniconda2/bin/jupyter-notebook", line 7, in from notebook.notebookapp import main File "/Users

PyCharm terminal doesn't activate conda environment

旧城冷巷雨未停 提交于 2019-11-27 21:25:50
I have a conda environment at the default location for windows, which is C:\ProgramData\Anaconda2\envs\myenv . Also, as recommended, the conda scripts and executables are not in the %PATH% environment variable. I opened a project in pycharm and pointed the python interpreter to C:\ProgramData\Anaconda2\envs\myenv\python.exe and pycharm seems to work well with the environment in the python console, in the run environment, and in debug mode. However, when opening the terminal the environment is not activated (I made sure that the checkbox for activating the environment is checked). To be clear -

Anaconda vs. miniconda

丶灬走出姿态 提交于 2019-11-27 10:34:58
In the Anaconda repository , there are two types of installers: "Anaconda installers" and "Miniconda installers". What are their differences? Besides, for an installer file, Anaconda2-4.4.0.1-Linux-ppc64le.sh , what does 2-4.4.0.1 stand for? The difference is that miniconda is just shipping the repository management system. So when you install it there is just the management system without packages. Whereas with Anaconda, it is like a distribution with some built in packages. Like with any Linux distribution, there are some releases which bundles lots of updates for the included packages. That

Conda command not found

强颜欢笑 提交于 2019-11-27 09:40:19
问题 I've installed Miniconda and have added the environment variable export PATH="/home/username/miniconda3/bin:$PATH" to my .bachrc and .bash_profile but still can't run any conda commands in my terminal. Am I missing another setup? I'm using zsh by the way. 回答1: If you're using zsh and it has not been set up to read .bashrc, you need to add the Miniconda directory to the zsh shell PATH environment variable. Add this to your .zshrc : export PATH="/home/username/miniconda/bin:$PATH" Make sure to

Link Conda environment with Jupyter Notebook

元气小坏坏 提交于 2019-11-27 06:20:52
I'm trying to set a good environnement for doing some scientific stuff with python. To do so, I installed Jupyter & miniconda. Then I want to be able to have different environnement and use them with Jupyter notebooks. So I created two custom envs with conda : py27 and py35. > conda env list # conda environments: # py27 /Users/***/miniconda3/envs/py27 py35 /Users/***/miniconda3/envs/py35 root * /Users/***/miniconda3 Then on my notebook I have two kernels python 2 and python 3 . Inside a notebook, I get the following with the python3 kernel : > import sys > print(sys.executable) /Users/***

how to install anaconda / miniconda on Linux silently

夙愿已清 提交于 2019-11-27 03:49:25
问题 How do I install the anaconda / miniconda without prompts on Linux command line? Is there a way to pass -y kind of option to agree to the T&Cs, suggested installation location etc. by default? 回答1: can be achieved by bash miniconda.sh -b (thanks @darthbith) The command line usage for this can only be seen with -h flag but not --help , so I missed it. To install the anaconda to another place, use the -p option: bash anaconda.sh -b -p /some/path 回答2: AFAIK pyenv let you install anaconda /

Anaconda vs. miniconda

丶灬走出姿态 提交于 2019-11-26 15:08:14
问题 In the Anaconda repository, there are two types of installers: "Anaconda installers" and "Miniconda installers". What are their differences? Besides, for an installer file, Anaconda2-4.4.0.1-Linux-ppc64le.sh , what does 2-4.4.0.1 stand for? 回答1: The difference is that miniconda is just shipping the repository management system. So when you install it there is just the management system without packages. Whereas with Anaconda, it is like a distribution with some built in packages. Like with