It's ok to mix Conda install and Pip install?How to upgrade all Python packages with pip?Why use pip over easy_install?How can I upgrade specific packages using pip and a requirements file?How do I install pip on Windows?Python and pip, list all versions of a package that's available?pip install mysql-python fails with EnvironmentError: mysql_config not foundInstalling specific package versions with pipHow to install packages using pip according to the requirements.txt file from a local directory?How do I install pip on macOS or OS X?What is the difference between pip and conda?
How to describe POV characters?
Is it okay to submit a paper from a master's thesis without informing the advisor?
Subset of knight's move in chess.
Why would anyone even use a Portkey?
How do ohm meters measure high resistances?
Two palindromes are not enough
How do I create a new column in a dataframe from an existing column using conditions?
How far can gerrymandering go?
Why did the Apple //e make a hideous noise if you inserted the disk upside down?
Calculus, Water Poured into a Cone: Why is Derivative Non-linear?
The Lucas argument vs the theorem-provers--who wins and why?
Adjective for 'made of pus' or 'corrupted by pus' or something of something of pus
Discworld quote about an "old couple" who having said everything to each other, can finally go about living their lives
Closest Proximity of Oceans to Freshwater Springs
If I were to build a J3 cub twice the size of the original using the same CG would it fly?
Why wasn't EBCDIC designed with contiguous alphanumeric characters?
Does a return economy-class seat between London and San Francisco release 5.28 tonnes of CO2 equivalents?
Peano's successor function
Ways to get SMD resistors from a strip
Why do movie directors use brown tint on Mexico cities?
Why is this double switch controlling both light circuits from both switches?
Avoiding repetition when using the "snprintf idiom" to write text
Cooking a nice pan seared steak for picky eaters
List Manipulation : a,b,c,d,e,f,g,h into a,b,c,d,e,f,g,h
It's ok to mix Conda install and Pip install?
How to upgrade all Python packages with pip?Why use pip over easy_install?How can I upgrade specific packages using pip and a requirements file?How do I install pip on Windows?Python and pip, list all versions of a package that's available?pip install mysql-python fails with EnvironmentError: mysql_config not foundInstalling specific package versions with pipHow to install packages using pip according to the requirements.txt file from a local directory?How do I install pip on macOS or OS X?What is the difference between pip and conda?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I find conda install
faster (something like numpy)
however I have to sometimes do pip install
to get versions that's not available in conda.
Is it safe to mix them inside conda environment?
So I did,
conda activate my-venv
conda install pip
conda install foo
pip install bar
python pip conda
add a comment |
I find conda install
faster (something like numpy)
however I have to sometimes do pip install
to get versions that's not available in conda.
Is it safe to mix them inside conda environment?
So I did,
conda activate my-venv
conda install pip
conda install foo
pip install bar
python pip conda
On Windows, more than a year ago, I noticed thatpip install
did not mix well, particularly when trying to export arequirements
file of the virtualenv. Every package installed throughpip
for any virtualenv were listed in the requirements, the only way at the time was to update this file manually... Not sure if it has evolved in between though
– Adonis
Mar 25 at 14:46
3
More information can be found anaconda.com/using-pip-in-a-conda-environment
– Christoffer
Mar 25 at 14:55
add a comment |
I find conda install
faster (something like numpy)
however I have to sometimes do pip install
to get versions that's not available in conda.
Is it safe to mix them inside conda environment?
So I did,
conda activate my-venv
conda install pip
conda install foo
pip install bar
python pip conda
I find conda install
faster (something like numpy)
however I have to sometimes do pip install
to get versions that's not available in conda.
Is it safe to mix them inside conda environment?
So I did,
conda activate my-venv
conda install pip
conda install foo
pip install bar
python pip conda
python pip conda
asked Mar 25 at 14:37
eugeneeugene
13.5k40 gold badges142 silver badges301 bronze badges
13.5k40 gold badges142 silver badges301 bronze badges
On Windows, more than a year ago, I noticed thatpip install
did not mix well, particularly when trying to export arequirements
file of the virtualenv. Every package installed throughpip
for any virtualenv were listed in the requirements, the only way at the time was to update this file manually... Not sure if it has evolved in between though
– Adonis
Mar 25 at 14:46
3
More information can be found anaconda.com/using-pip-in-a-conda-environment
– Christoffer
Mar 25 at 14:55
add a comment |
On Windows, more than a year ago, I noticed thatpip install
did not mix well, particularly when trying to export arequirements
file of the virtualenv. Every package installed throughpip
for any virtualenv were listed in the requirements, the only way at the time was to update this file manually... Not sure if it has evolved in between though
– Adonis
Mar 25 at 14:46
3
More information can be found anaconda.com/using-pip-in-a-conda-environment
– Christoffer
Mar 25 at 14:55
On Windows, more than a year ago, I noticed that
pip install
did not mix well, particularly when trying to export a requirements
file of the virtualenv. Every package installed through pip
for any virtualenv were listed in the requirements, the only way at the time was to update this file manually... Not sure if it has evolved in between though– Adonis
Mar 25 at 14:46
On Windows, more than a year ago, I noticed that
pip install
did not mix well, particularly when trying to export a requirements
file of the virtualenv. Every package installed through pip
for any virtualenv were listed in the requirements, the only way at the time was to update this file manually... Not sure if it has evolved in between though– Adonis
Mar 25 at 14:46
3
3
More information can be found anaconda.com/using-pip-in-a-conda-environment
– Christoffer
Mar 25 at 14:55
More information can be found anaconda.com/using-pip-in-a-conda-environment
– Christoffer
Mar 25 at 14:55
add a comment |
1 Answer
1
active
oldest
votes
Situation improves starting with conda 4.6
and the pip_interop_enabled
feature. So in the future it should be safe.
For now the recommendations stated in the comment of @Christoffer should remain true.
Note that it you encounter Pypi packages not available in conda, and if it is appropriate, you can create a recipe and submit to open-source community-managed channels conda-forge
or bioconda
. This way you won't have to ask "pip or conda?" anymore.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55340279%2fits-ok-to-mix-conda-install-and-pip-install%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Situation improves starting with conda 4.6
and the pip_interop_enabled
feature. So in the future it should be safe.
For now the recommendations stated in the comment of @Christoffer should remain true.
Note that it you encounter Pypi packages not available in conda, and if it is appropriate, you can create a recipe and submit to open-source community-managed channels conda-forge
or bioconda
. This way you won't have to ask "pip or conda?" anymore.
add a comment |
Situation improves starting with conda 4.6
and the pip_interop_enabled
feature. So in the future it should be safe.
For now the recommendations stated in the comment of @Christoffer should remain true.
Note that it you encounter Pypi packages not available in conda, and if it is appropriate, you can create a recipe and submit to open-source community-managed channels conda-forge
or bioconda
. This way you won't have to ask "pip or conda?" anymore.
add a comment |
Situation improves starting with conda 4.6
and the pip_interop_enabled
feature. So in the future it should be safe.
For now the recommendations stated in the comment of @Christoffer should remain true.
Note that it you encounter Pypi packages not available in conda, and if it is appropriate, you can create a recipe and submit to open-source community-managed channels conda-forge
or bioconda
. This way you won't have to ask "pip or conda?" anymore.
Situation improves starting with conda 4.6
and the pip_interop_enabled
feature. So in the future it should be safe.
For now the recommendations stated in the comment of @Christoffer should remain true.
Note that it you encounter Pypi packages not available in conda, and if it is appropriate, you can create a recipe and submit to open-source community-managed channels conda-forge
or bioconda
. This way you won't have to ask "pip or conda?" anymore.
answered Mar 25 at 21:31
FabienPFabienP
2,0741 gold badge11 silver badges21 bronze badges
2,0741 gold badge11 silver badges21 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55340279%2fits-ok-to-mix-conda-install-and-pip-install%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
On Windows, more than a year ago, I noticed that
pip install
did not mix well, particularly when trying to export arequirements
file of the virtualenv. Every package installed throughpip
for any virtualenv were listed in the requirements, the only way at the time was to update this file manually... Not sure if it has evolved in between though– Adonis
Mar 25 at 14:46
3
More information can be found anaconda.com/using-pip-in-a-conda-environment
– Christoffer
Mar 25 at 14:55