macOS can't run this project [ bitpack , win32api ]
See original GitHub issueMy test computer details: macOS 12.5 (21G72) intel Core i9
After I followed the ’ Manual Installation ( For Developers ) ’ to install this project, I found it can’t run. At first, it shows ’ can’t import name bitpack ’
File "/Users/chocovanilazuki/Downloads/ultimatevocalremovergui-5.3.0/diffq/base.py", line 21, in <module> from . import bitpack ImportError: cannot import name 'bitpack' from partially initialized module 'diffq' (most likely due to a circular import) (/Users/chocovanilazuki/Downloads/ultimatevocalremovergui-5.3.0/diffq/__init__.py)
Then I found this project is relied on the ’ win32api '. Only runs on Windows.
Issue Analytics
- State:
- Created a year ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Safely open apps on your Mac
Safely open apps on your Mac · View the app security settings on your Mac · Open a developer-signed or notarized app ·...
Read more >Getting Started with ASP.NET Core - Visual Studio for Mac
This article describes how to get started with ASP.NET in Visual Studio for Mac, including installation and creating a new project.
Read more >Microsoft Project for Mac: How to Run MS Project Files on ...
If you need to run Microsoft Project on Mac, ProjectManager is the ... project management software that works on Windows, macOS and OS...
Read more >Microsoft Project For Mac OS: Alternatives & Workarounds
Microsoft Project won't run on Mac because they can't talk to each other. Unfortunately, it doesn't get more fundamental than that. MS Project ......
Read more >Can you install and run apps built on the .NET framework ...
Installing the Mono Project runtime . It allows you to re-compile the code and run it on a Mac, but this requires various...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
After fiddling with it for an entire night, I got it running on my M1 Mac. I have to say, this project has more issues than assuming Win32 API is present.
And when I was configuring all this in a venv, Python dependencies are very messy. If you just do the pip install -r requirements.txt as README instructed you’ll face tons of errors, mostly because the dependency is messy and something magically depends on an older SciPy & NumPy which isn’t delivered in wheels. And if you try to compile Scipy/Numpy on M1, good luck fiddling with that. I ended up ignoring these weird versioning issues and just went with the latest wheels. No issues so far.
Many many small issues adds up. It’s painful to debug through all this. It couldn’t utilize M1 hardware (pure CPU) but ANE doesn’t support a very large neural network either so I think this is the best case.
Thank you for this! I didn’t have a personal MacBook to test on, so this is incredibly helpful. Most of the issues you’re having now are a result of me focusing on the all in one installer for Windows after UVR v5.1. I need to create separate branches for Mac and Linux and update the README.md. I just haven’t had much time. So far I’ve managed to get UVR v5.4 close to working fully on Ubuntu 22.04 but there are still a few things I need to work out (the SoX issue obviously being one since UVR is coded to rely on an executable for Noise Reduction.
If you manage to debug through most of this, create a pull request for a Mac-specific install, and I’ll test and then merge it.