Is it possible to use flair with anaconda and jupyter? Thanks
Is it possible to use flair with anaconda and jupyter? Thanks
You can use flair with anaconda and jupyter, just needpip install flair .
Is it possible to use flair with anaconda and jupyter? Thanks
You can use flair with anaconda and jupyter, just need
pip install flair .
i used pip but this message appear "Could not find a version that satisfies the requirement torch==1.0.0 (from flair) (from versions: 0.1.2, 0.1.2.post1) No matching distribution found for torch==1.0.0 (from flair)" (i have python 3.6 installed)
Is it possible to use flair with anaconda and jupyter? Thanks
You can use flair with anaconda and jupyter, just need
pip install flair .i used pip but this message appear "Could not find a version that satisfies the requirement torch==1.0.0 (from flair) (from versions: 0.1.2, 0.1.2.post1) No matching distribution found for torch==1.0.0 (from flair)" (i have python 3.6 installed)
I met this problem before, and solve it by : Install Pytorch first then install Flair.
when you plan to install Pytorch ,you can find the install command accroding your preferences in Pytorch
I had an issue that jupyter testpath package didn't give permission to install flair . I tried a different approach to solve it. Only one way which worked for me it is deleting testpath, and installing flair, and installing testpath package again. Here the the step:
pip uninstall testpath
pip install flair
pip install testpath
P.S : Please, don't judge strictly. I'm in the beginning of my way to become Data Scientist :)
Is it possible to use flair with anaconda and jupyter? Thanks
You can use flair with anaconda and jupyter, just need
pip install flair .i used pip but this message appear "Could not find a version that satisfies the requirement torch==1.0.0 (from flair) (from versions: 0.1.2, 0.1.2.post1) No matching distribution found for torch==1.0.0 (from flair)" (i have python 3.6 installed)
@cerlymarco , just uninstall your pytorch version and reinstall the 1.0.0 version.
use this command for install flair "pip install flair --no-deps"
Is it possible to use flair with anaconda and jupyter? Thanks
You can use flair with anaconda and jupyter, just need
pip install flair .i used pip but this message appear "Could not find a version that satisfies the requirement torch==1.0.0 (from flair) (from versions: 0.1.2, 0.1.2.post1) No matching distribution found for torch==1.0.0 (from flair)" (i have python 3.6 installed)
Maybe it's because you do not have a CUDA-capable system or do not require CUDA, as said in pythorch website. You should try:
pip install https://download.pytorch.org/whl/cpu/torch-1.0.1.post2-cp27-cp27mu-linux_x86_64.whl
pip install torchvision
pip install https://download.pytorch.org/whl/cpu/torch-1.0.1.post2-cp27-cp27m-linux_x86_64.whl
pip3 install https://download.pytorch.org/whl/cpu/torch-1.0.1.post2-cp35-cp35m-linux_x86_64.whl
pip3 install torchvision
pip3 install https://download.pytorch.org/whl/cpu/torch-1.0.1.post2-cp36-cp36m-linux_x86_64.whl
pip3 install torchvision
pip3 install https://download.pytorch.org/whl/cpu/torch-1.0.1.post2-cp37-cp37m-linux_x86_64.whl
pip3 install torchvision
Here's the info on the PyTorch website, with options to choose which OS you're installing onto, which Python version you're installing for, whether you want nightly builds, etc.
Most helpful comment
use this command for install flair "pip install flair --no-deps"