Can I pass through Anaconda's python? Can I use conda instead of pip?

Asked 1 years ago, Updated 1 years ago, 70 views

In response to the previous question,

Also, if you are using Mac or Linux, Python is already installed, so it is safer to start Anaconda before using the Anaconda environment as follows without going through the path when installing Anaconda.

    It says
  • 1, but if you want to use it on Windows, would it be okay if I ask the software to pass through the path when installing Anaconda?

  • またAlso, I am currently using Python 3.6, so a pip is included.
    I read an article that says it's better not to use pip and conda together, but as far as I can see (when I need a virtual environment later, etc.) conda seems to be easier to use, so
    Should I use conda for now?

It says と, but if you want to use it on Windows, would it be okay if you let the software pass through when installing Anaconda?

またAlso, I am currently using Python 3.6, so a pip is included.
I read an article that says it's better not to use pip and conda together, but as far as I can see (when I need a virtual environment later, etc.) conda seems to be easier to use, so
Should I use conda for now?

My environment is Windows 10,64bit.

python python3 anaconda

2022-09-30 21:34

1 Answers

WindowsThere is no problem with Windows.
For linux, the directory anaconda3/bin contains many executables, including Python.By passing through the path, the problem is that the executable in anaconda3/bin takes precedence over the executable installed on the system.However, for Windows, applications are based on using the .NET Framework or the Win32 API, so passing through the anaconda3 path will have limited impact.

An When using Anaconda, it is basic to use conda when installing the package.However, not all packages are available in Anaconda, so use pip if they do not exist in Anaconda.

I think the article that says it is better not to use pip and conda together is conda and pip: Don't mix it up.You need to be careful, but I don't think you need to be too nervous.

The PyQT mentioned in the example article is a package for creating desktop applications and is not intended for Anaconda in the first place and is not usually used for Anaconda.When using Python centered on data science, pip is often required, as the article states, pip was rarely found for the risk of using pip in anaconda environment.

It says, "I'm using Python 3.6 now, so a pip is included," but Anaconda also comes with a pip. If you pass Anaconda, anaconda will work to install the Anaconda package into the Anaconda


2022-09-30 21:34

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.