Questions tagged [anaconda3]

For questions specifically about version 3 of the Anaconda platform. Probably also add the [anaconda] tag to your question.

Anaconda is an Open Data Science platform powered by Python.

See the tag for details about Anaconda and the use of the tags related to it.

700 questions
3
votes
0 answers

Unsatisfiable error in installing mysql in Anaconda Navigator

I am trying to installing MySQL in Anaconda. But it is showing error in installing the following packages: 1. mysql-python-connector 2. mysql-python Anaconda shows the following error: ''' UnsatisfiableError: The following specifications were…
Student18
  • 125
  • 1
  • 1
  • 11
3
votes
1 answer

Anaconda, update Pytorch to the latest version 1.5

How could I update PyTorch from 1.4 -> 1.5 using Anaconda either through terminal or navigator? Updating Anaconda with conda update --all updated some of the packages, not all, PyTorch included. Initially, I installed PyTorch by running conda…
vpap
  • 1,389
  • 2
  • 21
  • 32
3
votes
1 answer

Packaging a set of executable jars with conda

I'm quite new to anaconda/conda packaging. I'd like to package a software suite that generate many executable jars. As far as I understand (and may be I'm wrong) the package description is downloaded as an archive.tar.bz2 from https://anaconda.org/…
Pierre
  • 34,472
  • 31
  • 113
  • 192
2
votes
1 answer

Installing Robot Framework on MacOS - Python Issue

Initially, I already had Python 3.8, Pycharm 2020 CE, and Anaconda 3 installed on my Macbook from years before. I followed a tutorial on installing the Robot Framework, but have run into some issues. I already had the above installed. I, then,…
Leon
  • 21
  • 1
2
votes
2 answers

Jupyter nbextensions doesn´t appear - 404 GET /static/components/marked/lib/marked.js

Steps done After introduce the next commands. conda create -n dsenv python=3.10 conda activate dsenv pip install jupyter pip install jupyter-contrib-nbextensions==0.5.1 jupyter contrib nbextension install --user Everything went well. But when i…
2
votes
0 answers

How to make your default path as base for anaconda?

I have been using anaconda(in which most things are preinstalled) for a while now but recently switch to miniconda. atm whenever I need to run miniconda I have to set the source as source ~/miniconda3/bin/activate then I would see Base in my path…
Irfan Yaqub
  • 402
  • 4
  • 14
2
votes
2 answers

Installing R development version in Conda environment

I would like to install R development version (i.e. latest daily snapshot) inside a conda environment. I haven't found any conda package that would allow me to install such a version from conda directly. I can install it from source, but I'm not…
tmt
  • 83
  • 4
2
votes
0 answers

How to go to a folder in D drive in Anaconda prompt from C drive for Jupyter Lab?

I want to go to a folder in D Drive in Anaconda prompt from C drive I tried and succeeded and want to share the results. Open Anaconda prompt Type cd : D\Any folder\ More folder Type D: Type jupyter-lab Press enter C drive to D drive
ani
  • 21
  • 2
2
votes
0 answers

Type of the return value must be pandas_profiling.report.presentation.core.renderable.Renderable; got ipywidgets.widgets.widget_box.VBox instead

It can't show the report as widgets in Pandas Profiling. import numpy as np import pandas as pd import pandas_profiling as pp from pandas_profiling import ProfileReport df =…
2
votes
1 answer

MacOS Anaconda caused warning messages on Powerlevel 10k with Zsh

I have been using Powerlevel 10k with Zsh on MacOS Monterey. Now that I've just installed Anaconda for MacOS, whenever I open a new tab in the terminal iTerm, I get the following message: [WARNING]: Console output during zsh initialization…
Pathros
  • 10,042
  • 20
  • 90
  • 156
2
votes
1 answer

vscode jupyter failed to start kernel

I use jupyter notebooks in vscode all the time. I noticed about a day or two ago that I could no longer run code in cells. It always displayed Failed to start the Kernel. OSError: [WinError 123] The filename, directory name, or volume label syntax…
2
votes
1 answer

One conda env, multiple paths

I can't figure out why my base environment is stored in 8 different places. I just ran conda update --all and conda clean -all to try and make conda run faster, but I can't find any resources on why the base env would have so many duplicates. A…
ichthyophile
  • 107
  • 8
2
votes
1 answer

What should be changed in the .bash_profile file to delete/uninstall Conda/Anaconda completely?

So according to the official doc, we only need to delete the export path line. But it looks like all of the file is about conda. Can you also explain what is .bash_profile, can the file be deleted? # >>> conda initialize >>> # !! Contents within…
wangge
  • 145
  • 5
2
votes
2 answers

switch conda environment from within python script

Is it possible at all to launch a Python script using conda environment ENV1 and at some point within the script to switch to environment ENV2 and the code that follows that point to be executed within ENV2 instead of ENV1? I have tried the…
tevang
  • 518
  • 1
  • 4
  • 17
2
votes
0 answers

Opening a terminal window from Jupyter Notebook

I have a Jupyter Notebook that prepares certain files. Then, I open a zsh terminal window and run a Python file (computations.py), which requires the files prepared. I run this computation outside of Jupyter because it takes a long time, uses…