Questions tagged [pip]

pip is the package manager for python. It is commonly used to both install and upgrade various libraries that are utilized by python.

16 questions
3
votes
1 answer

PermissionError for conda env update

I got a very strange error when run conda env create -f environment.yml. Due to proprietary information, I cannot share the content of environemnt.yml, except that it contains a pip section - pip - pip: - sqlalchemy - pyyaml It…
czwang
  • 131
  • 2
2
votes
1 answer

Google Colab conda packages permanently installation

I want to install some conda packages on Google Colab. Installation done successfully, but it wont detect it when we restart the new Colab session. I followed the link…
vipin bansal
  • 1,252
  • 9
  • 17
2
votes
1 answer

Installing Orange Package with older Python Version?

I am trying to install an Add-on package from GitHub that contains prototype widgets for Orange Data Mining. I am trying to install it from the GitHub page found here. I am using the following Terminal code to install this: git clone…
Ethan
  • 1,625
  • 8
  • 23
  • 39
1
vote
1 answer

Site packages location not shared between Python and Jupyter Lab

I appreciate the fact that Jupyter runs in an isolated mode. I read several posts about it by now. What I don't understand is why the JUPYTER_PATH variable is ignored as well as appending manually (as a proof of concept) the path of the current site…
Andrea Moro
  • 331
  • 3
  • 11
1
vote
0 answers

Getting errors while trying to install tensorflow on ubuntu

I was following these instructions for installing tensorflow. I tried pip install --upgrade tensorflow but am getting this error: ERROR: Exception: Traceback (most recent call last): …
1
vote
1 answer

How to integrate google cloud with dropbox and jupyter notebook using tensorflow

So I opened up a google cloud account and have access to global and local (us east 1) resources (Compute Engine API , NVIDIA K80 GPUs) and connected it to my dropbox. Next, I followed this youtube video to try to connect it to my jupyter…
Keren
  • 81
  • 8
1
vote
0 answers

Installing NLTK using WHL file -

I have previously used WHL (wheel) files to install various Python packages. But, it seems there's no such file for NLTK. Any workaround for this please? https://pypi.org/project/nltk/ The problem is I don't have access to install or *.exe files.…
ranit.b
  • 451
  • 4
  • 15
1
vote
0 answers

Problem upgrading pip command in Azure Jupyter notebook

Trying to install CNTK, I received a message saying that I should upgrade pip command here This one is another question related to the upgrading of pip. After the installation with the command pip install cntk I received another error message as…
1
vote
2 answers

Problem importing CNTK in Azure jupyter notebook

Vineeth Sai indicated in this that with the following code: pip install cntk the problem is solved. However, I am getting the error shown in attached image:
1
vote
0 answers

Adding custom packages to Jupyter Lab?

Is there a way of making custom Python packages generally available within Jupyter lab? While their documentation suggests to make install-able versions, and going through PIP, this is rather inconvenient for exploratory data science (especially,…
tsttst
  • 151
  • 1
  • 9
1
vote
0 answers

How to integrate Zoho analytics with Jupyter notebook?

I am trying to connect Zoho Analytics and Python for importing data from Zoho Analytics. I have already installed !pip install zoho-analytics-connector. What should I do next? I am new to integrating with other BI tools so unable to find out a…
Pikaschu
  • 11
  • 2
0
votes
1 answer

what if conda has no package?

I just installed tensorflow environment with conda. but problem is conda does not have some packagefor example 'fastai' pip3 only has this package as you know pip install and conda install has different package directory so if conda does not have…
slowmonk
  • 513
  • 1
  • 7
  • 16
0
votes
1 answer

chainlit test failed

I am using windows OS. I created a folder named ABC under C. In command prompt, I typed cd C:\ABC and then typed the following commands: pip install huggingface_hub pip install transformers pip install langchain pip install chainlit The above…
0
votes
0 answers

Pip download does not see package

In kaggle comp I try to store all the packages to build them later without internet connection. At first I use freeze to get packages, then download. Problem is, that despite 'freeze' show us…
XEX
  • 1
  • 2
0
votes
0 answers

conda/pip package conflicts for tensorflow-gpu

I am using ubuntu 20.04 in Windows 11's WSL2 environment. The PC has a Nvidia GPU and so I have been using CUDA to accelerate tensorflow code execution. I used conda to install tensorflow 2.6.2 and it got the correct versions of drivers,…
David293836
  • 197
  • 1
  • 6
1
2