OpenSNA
OpenSNA copied to clipboard
Unsupported operand type error and installation error
- First of all, there were two python files in the root of the project, and I didn't know which one to open. This happened because of the lack of documentation and installing/running guide.
- Now coming to the main issues-
- I had to install
pandas
andnetworkx
dependencies on the user end, the program did not handle that issue itself. - I had to run both the programs in both python and python3, because again, there was no documentation.
- Python 2-
- When I installed all dependencies and ran
python OpenSNA.py
, no response was seen.(see below) - I ran
python main.py
and it showed error `Unsupported operand type(s) for +: 'EdgeView' and 'list'(see below)
- When I installed all dependencies and ran
- Python 3-
- The programs were made in python2, which is not mentioned in the documentation, so
python3 OpenSNA.py
andpython3 main.py
both showed syntax errors(see below)
- The programs were made in python2, which is not mentioned in the documentation, so
- I had to install