Written By: KiyoWxInstallation Troubleshooting Guide
If you followed the Installation Guide but encounter issues, this troubleshooting section addresses the most common problems. For problems not listed here, join our Discord server and provide detailed information. Support is community based and mostly volunteer.
Before you troubleshoot
Confirm that you completed every step in the Installation Guide. This troubleshooting guide primarily addresses Windows issues. macOS and Linux users may encounter fewer of these problems.
Common Issues and Solutions
VS not looking for VS2017 (Issue #61)
The installer cannot find Visual C++ Redistributable for Visual Studio 2017 or later.
Solution:
- Download the latest Redistributable: https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170
- Install the correct version for your system (x64 / x86).
- Install Desktop Development with C++
- Re-run the installation.
Tip: If
better-sqlite3fails, see its troubleshooting guide.
Python not found during installation
During the installation, the process fails because it cannot find Python 3.8 or newer. Make sure Python is installed and added to your system PATH.
- Install Python 3.8 or newer from:
https://www.python.org/downloads/ - During installation, ensure “Add Python to PATH” is checked.
- Open a new terminal and verify Python is available:bash
py --version # or... python3 --version - Re-run the AtmosphericX installation.
3. Port 80 already in use
When starting AtmosphericX, it fails to bind to port 80 because another application is already using it or insufficient permissions.
Tip: On Windows, running the script as Administrator may be required to bind to port 80.
- Identify the application using port 80:
netstat -aon | findstr :80sudo lsof -i :80cd build-tools
sudo bash start.sh- Stop the conflicting application or change its port.
4. Instant Closure on Start
AtmosphericX starts but immediately exits without errors. Run AtmosphericX from a terminal rather than double-clicking the script. This allows you to see any error messages.
cd project
npm run start- Check the terminal output for errors and address them accordingly.
Need more help?
If your problem isn’t listed here, join our Discord server and provide detailed information, including:
- Your operating system
- Steps you took during installation
- Any error logs or messages
Community support is volunteer-based, so please be patient.