Questions tagged [miniconda]

Minimal installation package for the python package manager [conda], which includes only conda and all its dependencies (in contrast to [anaconda] which is the "enterprise" distibution of conda)

953 questions
-1
votes
1 answer

why couldnot I install "seaborn" and "pandas" in ubuntu?

in my code, there are import seaborn and they give me no module named seaborn when I use pip install seaborn it gives me Requirement already satisfied but I still couldnot import seaborn so I use pip3 install seaborn,it reports so many errors as…
tanglai
  • 161
  • 2
  • 10
-1
votes
2 answers

Looking for a cross-platform (Linux, MacOS, Windows) tool for managing Python environments

I was investigating the use of Anaconda environments for CI/CD (since, to my knowledge, it is the only platform that supports Linux, MacOS, and Windows). I tried to use Miniconda which is supposed to only install the bare minimum. However, I…
AstrOne
  • 3,569
  • 7
  • 32
  • 54
-1
votes
1 answer

switch among conda installs

At least in bash + conda v4.6.14, conda init adds the following to ~/.bashrc: # >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$('/ebio/abt3_projects/software/miniconda3/bin/conda' 'shell.bash'…
sharchaea
  • 743
  • 1
  • 6
  • 16
-1
votes
1 answer

ModuleNotFoundError: No module named 'rnn_base'

I am trying to run this python code but I will get the following error: import rnn_base as rnn ModuleNotFoundError: No module named 'rnn_base' the problem is none of conda install rnn_base or pip install rnn_base can't find any package with name…
Reza Amya
  • 1,494
  • 2
  • 25
  • 40
-1
votes
1 answer

Cannot create environment in anaconda, update conda , install packages

CondaHTTPError: HTTP 000 CONNECTION FAILED for url https://repo.anaconda.com/pkgs/free/win-64/repodata.json.bz2 Elapsed: - An HTTP error occurred when trying to retrieve this URL. HTTP errors are often intermittent, and a simple retry will get you…
-1
votes
1 answer

Miniconda has multiple versions of libraries installed

I checked out the pkgs folder of my Miniconda installation and found that some of the libraries has multiple versions installed. Miniconda Package Folder I did not install seperate versions and I am not using virtualenv. All my projects use the…
-1
votes
1 answer

shell script within Conda env can't execute mkdir

We are on an Ubuntu system running conda. Within an environment (python2, pandas, other packages) we are trying to run a shell script that: 1. creates dir (mkdir) 2. runs executables the path to which are in PATH (.bashrc) Neither of these are…
-1
votes
2 answers

package install error related to conda

How do I install the following 2 packages using miniconda? pip install PyICU pip install pycld2 I got an error related to gcc therefore I run conda install gcc Now I am getting error related to g++ I am not looking for a solution that involve…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
-1
votes
1 answer

R, biocLite, libcurl not found

I'm running an error similar to R, biocLite, error installing DESeq2 with the difference that I have the libxml2-dev and libcurl4-openssl-dev properly installed... But I keep getting the same ERROR message in R: ------------------------- ANTICONF…
cpat
  • 1
  • 1
-1
votes
1 answer

How can I download and install Numpy and Pandapower?

How can I Download and install numpy and pandapower on the RASPBIAN JESSIE LITE Minimal image based on Debian Jessie? the one without the GUI. And how can I download and install Pip and miniconda on it as well?
Mj94
  • 11
-1
votes
2 answers

How to install library

I am a little bit confused.... I installed anaconda on my computer (I have windows 10). Normally, when I want to install a package I simply do "pip install package_name" or "conda install package_name" and it is done. First question: what is the…
Anneso
  • 583
  • 2
  • 11
  • 20
-1
votes
1 answer

What is the correct way of setting up Tensorflow on Linux, after all?

I'm having some misinformation problem regarding Tensorflow. Lot's of info on lot's of places, and never complete enough. I got my system set up with CUDA 8.0, cuDNN and I have Keras + Theano working ok with python 2.7. I'm trying to move to…
-1
votes
3 answers

How to import pandas as pd after Installing pandas with Miniconda

bash Miniconda3-latest-MacOSX-x86_64.sh #installed miniconda on Mac conda create -n name_of_my_env python=3.6 #created an environment with python 3.6 source activate name_of_my_env# activate enviroment conda install pandas #install pandas by…
Charlotte
  • 1
  • 3
-1
votes
1 answer

Result from Support Vector Machine confusing

Hi here is the code image for prediction value ,but i cannot understand about the result... using SVM technique... and here is the result for my code and here is the data.. i cannot understand the result of my code.... please guys will you help…
Nijar Hossain
  • 129
  • 2
  • 10
-1
votes
3 answers

__pycache__ folder executes each time i run any other file in the folder

I am learning python and I have a tutorial folder with 5 or 6 python files. One of them contained regex functions say file_regex.py. The problem is when I execute any other file in the folder, always file_regex.py is executed thus giving the output…
chmodsss
  • 711
  • 8
  • 18
1 2 3
63
64