You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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.
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)
The text was updated successfully, but these errors were encountered: