Windows installation
See original GitHub issueHello, when installing darts libary using conda as per instructions with python 3.7 i get the following error:
PS C:\Users\XXXX> conda install -c conda-forge u8darts-all
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: -
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
failed
UnsatisfiableError: The following specifications were found to be incompatible with each other:
Output in format: Requested package -> Available versions
Do you have any ideas why this is happening?
I can install prophet on it’s own but not the darts libary.
Thanks,
Adam
Issue Analytics
- State:
- Created 2 years ago
- Comments:16 (8 by maintainers)
Top Results From Across the Web
Create installation media for Windows - Microsoft Support
You can use installation media (a USB flash drive or DVD) to install a new copy of Windows, perform a clean installation, or...
Read more >Window Installation at The Home Depot
We replace and install top quality windows in vinyl, wood, and storm protection styles from America's leading brands. Schedule a free virtual or...
Read more >Windows Installation Disc - Walmart.com
Shop for Windows Installation Disc at Walmart.com. Save money. Live better. ... Windows 10 Home 32/64 Bit Install, Repair, Recover & Restore DVD....
Read more >How to Install Windows 11, 10, 8.1, or 7 Using a Bootable USB
How to install Windows 10 using bootable USB · Plug your USB device into your computer's USB port, and start up the computer....
Read more >How To Install Windows 10 From USB (2022) - YouTube
0:00 Intro0:10 Prepping the installer1:39 Start the install via USBIn order to install Windows 10 on a PC via USB, follow these steps....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@GitHunter0 glad that worked!
Regarding the size: darts itself is very small, but some of the dependencies of
u8darts-all
might not be. PyTorch on Windows should take about 1.6 GB, so I’m not sure where the rest comes from. Maybe CUDA and other dependencies? You could also try to installu8darts-torch
if you’re not using Prophet and pmdarima.I imagine that might be because you are reinstalling PyTorch using pip. Could you try recreating the conda environment and reinstalling the prerequisites using conda, but using
pip install u8darts
instead ofpip install darts
?