Tell us what’s happening:
I am trying to start the project. The replit code does not set up numpy properly. From looking around online and on this forum, it appears to be primarily the .replit not being filled out properly. The 2 things I have done that appear to work (they make the red squiggle under ‘import numpy’ go away:
pip install numpy (in the shell)
and modifying my replit.nix to be:
{ pkgs }: {
deps = [
pkgs.python38Full
pkgs.python38Packages.matplotlib
pkgs.python38Packages.numpy
pkgs.python38Packages.pandas
pkgs.python38Packages.seaborn
];
}
Unfortunately, when I do this, it runs infinitely and ends up overheating the virtual CPU. Any advice? How did you guys get around this for the project??
Any advice is appreciated, I am mostly annoyed to not even be able to begin!
Challenge: Data Analysis with Python Projects - Mean-Variance-Standard Deviation Calculator
Link to the challenge: