Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ModuleNotFoundError: No module named 'scipy' #3

Open
Namprire opened this issue May 10, 2024 · 0 comments
Open

ModuleNotFoundError: No module named 'scipy' #3

Namprire opened this issue May 10, 2024 · 0 comments

Comments

@Namprire
Copy link

I created a virtual environment in Miniconda for Python version 3.8.16 and installed all dependencies from the requirements.txt file via pip3 install. All packages were installed successfully. However, when I try to start the program with the command 'python3 Retina.py -d samples/webex/webex_sample.pcapng', as seen in the documentary, I get an error.

(retina2) C:\...\Retina>python3 Retina.py -d samples/webex/webex_sample.pcapng
Traceback (most recent call last):
  File "C:\...\Retina\Retina.py", line 10, in <module>
    from pcap2csv import pcap_to_csv, pcap_to_port
  File "C:\...\Retina\pcap2csv.py", line 5, in <module>
    from tshark2stat import tshark_to_stat
  File "C:\....\Retina\Retina\tshark2stat.py", line 3, in <module>      
    from MeetData import WebexDataset, webrtcDataset, OtherDataset
  File "C:\....\Retina\MeetData.py", line 6, in <module>
    from Stats.SeriesStats import *
  File "C:\...\Retina\Retina\Stats\SeriesStats.py", line 4, in <module>
    from scipy.stats import moment
ModuleNotFoundError: No module named 'scipy'

scipy was already installed inside the environment but I got the same error:
Requirement already satisfied: scipy in c:....\anaconda3\envs\retina2\lib\site-packages (1.10.1)
Requirement already satisfied: numpy<1.27.0,>=1.19.5 in c:....\anaconda3\envs\retina2\lib\site-packages (from scipy) (1.22.0)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant