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
when i use the function "_write_walks_to_disk(args)", the terminal will hint "name '__current_graph' is not defined". I wonder if global variables cannot be invoked in the process.
The text was updated successfully, but these errors were encountered:
Same problem (Windows10). Can anybody help with this?
Update:
Steps I followed and worked for me:
In comE-master: conda env create -f env.yml removing packages related with linux
Add following block of code to "cython_utils.py" under the line from distutils.core import setup:
try:
from setuptools import setup
from setuptools import Extension
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
python cython_utils.py build_ext --inplace
In file "util/graph_utils.py" line 13 add ThreadPoolExecutor function: from concurrent.futures import ProcessPoolExecutor, ThreadPoolExecutor
and in def write_walks_to_disk replace ProcessPoolExecutor with ThreadPoolExecutor in lines 146, 150.
when i use the function "_write_walks_to_disk(args)", the terminal will hint "name '__current_graph' is not defined". I wonder if global variables cannot be invoked in the process.
The text was updated successfully, but these errors were encountered: