-
Notifications
You must be signed in to change notification settings - Fork 28
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
Trouble with swmm-toolkit install #79
Comments
Did you activate your virtual environment prior to using it? If you don’t activate the search path for dlls won’t be set properly. |
Does it only work with venv or virtualenv? I am using a conda env that is activated. |
It should work. I use both conda and venv in development. |
Are you installing from the wheels on pypi or from source? |
I've tried both and am getting the same error. I'm not sure how to check by search path for dlls, is it just my $PATH env variable? |
In the latest version output_enum.py has been renamed shared_enum.py. So that would solve the error you are getting on Linux |
Can you confirm aenum version? |
Linux : aenum==2.2.6 |
What version of swmm-toolkit do you have installed? |
swmm-toolkit = 0.8.2 |
When I install from pypi into a conda env everything works properly. Based on the info you have provided I can't isolate the problem. Can you take us through step by step what you are doing so we can recreate the problem on our side? |
ok, so changing output_enum to shared_enum fixed the issue on linux. On windows I made a fresh conda env, ran
popped open my site-packages directory and see swmm and swmm_toolkit folders, which matches what I find on linux. Below are the dlls in the swmm_toolkit folder:
|
That's good info. Whats in the swmm.toolkit folder? Cause its not able to load the swmm/toolkit/_output*.dll for some reason |
|
The library is in there. Why can't it find it? |
What shell are you using? Powershell? |
Could it be a permissions issue? You don't appear to have execution rights for the library. |
We have seen this error before with conda installation.
It happens when I don't activate my conda environment using: |
I am activating for sure:
|
@karosc Can you try adding your miniconda path (and miniconda\Library\bin) to your system environment path? Edit: Maybe C:\Users\KAROSC\Miniconda\Library\bin\ ? I'm not familiar with miniconda |
I ran the following on both my working linux and not working windows systems:
Linux output~/miniconda3/envs/swmm/lib/python39.zip Windows outputC:\Users\KAROSC\Miniconda\envs\swmmtk\python39.zip |
Another note, I can fix the windows issue by copying all dlls from |
I did the Windows dev work using cmd prompt. So I suppose it's possible this is a PowerShell related issue. Could you humor me by trying a windows command prompt? |
Still same error.
|
Well the swmm\toolkit_init_.py file should add swmm_toolkit to the path automatically.This doesn't appear to be happening on your machine for some reason. We have experienced init.py not getting called when the conda environment is not activated properly. I haven't used conda in powershell. What command do you use to activate an conda env in powershell? |
Ok. I am able to recreate the problem. It's related to python3.9. I will investigate. |
Ok I think I may have found the cause. I changed the end of the toolkit init.py to include a print call:
printing libdir yields:
that doesn't look quite right... |
looks like it might be caused by os path separator |
I did some testing and found that commenting out the following in
This is very weird, because python docs suggest os.add_dll_directory is the correct way to do this. |
Nice catch! |
A quick google search reveals this is a known issue. |
Ok, even further, this is conda issue. We need to set another environment variable if using conda. If I set CONDA_DLL_SEARCH_MODIFICATION_ENABLE=1, then the whole thing works with the original source code. Not sure if we want to check if using conda before setting the variable, but the following is a fix
if we want to check for conda, we could do something like this:
|
Awesome! Thanks so much! |
This looks great. Do you want to create a PR to close this issue? |
on it! |
Addressed in #80 |
I am getting various errors after installing on windows and linux. I also tried building and installing from source and still get the same errors. Not sure if I am missing something.
Windows
after
pip install swmm-toolkit
executingfrom swmm.toolkit import output, output_enum
yields:Linux
after
pip install swmm-toolkit
executingfrom swmm.toolkit import output, output_enum
yields:The text was updated successfully, but these errors were encountered: