Tell us what’s happening:
Describe your issue in detail here.
The default relit won’t load numpy… So…
Your code so far
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Challenge: Data Analysis with Python Projects - Mean-Variance-Standard Deviation Calculator
Link to the challenge:
You’ll have to install numpy.
On the right side of the screen, you’ll see a tab labelled “shell” - click that. Then type “pip install numpy”
I was running out of resources during install as well. Looks like poetry is trying to downgrade:
Updating numpy (1.24.2 -> 1.18.5): Installing...
You could try updating the pyproject.toml
line 9 to be:
numpy = "^1.24"
For me it updated the poetry.lock file and I was able to finish after that.