zoffline
zoffline enables the use of Zwift offline by acting as a partial implementation of a Zwift server. By default zoffline is only for a single player. See Step 6: Enable Multiplayer for how to enable support for multiple users/profiles.
zoffline also offers riding against ghosts (your previous rides). Enable this feature by checking "Enable ghosts" in zoffline's launcher. See https://github.com/zoffline/zwift-offline/issues/56 for extra details.
Additionally, zoffline's launcher allows selecting a specific map to ride on without mucking about with config files.
Install
Setting up zoffline requires two primary steps. First, zoffline must be installed and run on a system before running Zwift (either on the system running Zwift or on another locally networked system). Second, Zwift must be configured to use zoffline instead of the official Zwift server.
Step 1: Install zoffline
There are three ways with which to install and run zoffline depending on your platform:
Simplest (Windows only)
To install zoffline on Windows:- Download the latest zoffline release from https://github.com/zoffline/zwift-offline/releases
- Run the downloaded zoffline.exe
- Once run, zoffline will create a
storagedirectory in the same folder it's in to store your Zwift progress.
- Once run, zoffline will create a
- Start Zwift with zoffline.exe running (after completing step 2 or running configure_client script from https://github.com/zoffline/zwift-offline/releases/tag/zoffline_helper)
- It takes zoffline a few seconds to start. Wait until text appears in the command prompt before opening Zwift.
- When done with Zwift, press Ctrl+C in the command line to close zoffline.
Linux, Windows, or Mac OS X (from source)
To install zoffline on Linux, Windows, or Mac OS X:- Install Python 3 (https://www.python.org/downloads/) if not already installed
- On Windows, installing Python via the Microsoft Store is highly recommend! If using a Python installer, ensure that in the first Python installer screen "Add Python 3.x to PATH" is checked.
- Python 2 remains supported for now, but it is not recommended.
- Install dependencies: flask, flask_sqlalchemy, flask-login, pyjwt, gevent, python-protobuf, protobuf3_to_dict, stravalib (optional)
- e.g., on Linux/Mac:
pip3 install flask flask_sqlalchemy flask-login pyjwt gevent protobuf protobuf3_to_dict stravalib - e.g., on Windows in command prompt:
pip install flask flask_sqlalchemy flask-login pyjwt gevent protobuf protobuf3_to_dict stravalib- You may need to use
C:\Users\<username>\AppData\Local\Programs\Python\Python39\Scripts\pip.exeinstead of justpip
- You may need to use
- e.g., on Linux/Mac:
- Clone or download this repo
- If you are not running zoffline on the same PC that Zwift is running: create a
server-ip.txtfile in thestoragedirectory containing the IP address of the PC running zoffline. - Run standalone.py before starting Zwift
- e.g., on Linux/Mac:
sudo ./standalone.py- sudo is needed because we're binding to the privileged ports 80 and 443.
- If using Python 3, but Python 3 is not your system default run
sudo python3 standalone.py
- e.g., on Windows in command prompt:
python standalone.py- You may need to use
C:\Users\<username>\AppData\Local\Programs\Python\Python39\python.exeinstead of justpython
- You may need to use
- e.g., on Linux/Mac:
- Start Zwift with standalone.py running (after completing step 2)
- Note: When upgrading zoffline, be sure to retain the
storagedirectory. It contains your Zwift progress state.
zoffline can be installed on the same machine as Zwift or another local machine.
Using Docker
- Install Docker
- Create the docker container with:
docker create --name zwift-offline -p 443:443 -p 80:80 -p 3022:3022/udp -p 3023:3023 -v </path/to/host/storage>:/usr/src/app/zwift-offline/storage -e TZ=<timezone> zoffline/zoffline- You can optionally exclude
-v </path/to/host/storage>:/usr/src/app/zwift-offline/storageif you don't care if your Zwift progress state is retained across zoffline updates (unlikely). - The path you pass to
-vwill likely need to be world readable and writable. - A list of valid
<timezone>values (e.g. America/New_York) can be found here. - Adding
--restart unless-stoppedwill make zoffline start on boot if you have Docker v1.9.0 or greater.
- You can optionally exclude
- If you are not running zoffline on the same PC that Zwift is running: create a
server-ip.txtfile in the</path/to/host/storage>directory containing the IP address of the PC running zoffline. - Start zoffline with:
docker start zwift-offline
Step 2: Configure Zwift client to use zoffline
Windows Instructions
- Install Zwift
- If your Zwift version is 1.0.61590, you're all set.
- If Zwift is not installed, install it before installing zoffline.
- If your Zwift version is newer than 1.0.61590 and zoffline is running from source: copy
C:\Program Files (x86)\Zwift\Zwift_ver_cur.xmlto zoffline'scdn/gameassets/Zwift_Updates_Root/overwriting the existing file. - If your Zwift version is newer than 1.0.61590 and zoffline is not running from source: wait for zoffline to be updated.
- NOTE: instead of performing the steps below you can instead just run the configure_client script from https://github.com/zoffline/zwift-offline/releases/tag/zoffline_helper
- On your Windows machine running Zwift, copy the following files in this repo to a known location:
ssl/cert-zwift-com.p12ssl/cert-zwift-com.pem
- Open Command Prompt as an admin, cd to that location and run
certutil.exe -importpfx Root cert-zwift-com.p12- For Windows 7: run
certutil.exe -importpfx cert-zwift-com.p12instead
- For Windows 7: run
- If you're prompted for a password, just leave it blank. There is no password.
- In the same command prompt run
type cert-zwift-com.pem >> "C:\Program Files (x86)\Zwift\data\cacert.pem"- Note: Appending cert-zwift-com.pem via Notepad will not work (#62)
- Open Notepad as an admin and open
C:\Windows\System32\Drivers\etc\hosts- Append this line:
<zoffline ip> us-or-rly101.zwift.com secure.zwift.com cdn.zwift.com launcher.zwift.com
(Where<zoffline ip>is the ip address of the machine running zoffline. If it's running on the same machine as Zwift, use127.0.0.1as the ip.)
- Append this line:
Why: We need to redirect Zwift to use zoffline and convince Windows and Zwift to accept zoffline's self signed certificates for Zwift's domain names. Feel free to generate your own certificates and do the same.
Mac OS X Instructions
- Install Zwift
- If your Zwift version is 1.0.61590, you're all set.
- If Zwift is not installed, install it before installing zoffline.
- If your Zwift version is newer than 1.0.61590: copy
~/Library/Application Support/Zwift/ZwiftMac_ver_cur.xmlto zoffline'scdn/gameassets/Zwift_Updates_Root/overwriting the existing file.
- On your Mac machine running Zwift, copy the following files in this repo to a known location:
ssl/cert-zwift-com.p12ssl/cert-zwift-com.pem
- Open Keychain Access, select "System" under "Keychains", select "Certificates" under "Category"
- Click "File - Import Items..." and import
ssl/cert-zwift-com.p12 - Right click "*.zwift.com", select "Get Info" and under "Trust" choose "When using this certificate: Always Trust".
- If you're prompted for a password, just leave it blank. There is no password.
- Click "File - Import Items..." and import
- In a terminal within the directory
ssl/cert-zwift-com.pemwas copied to, runcat cert-zwift-com.pem >> ~/Library/Application\ Support/Zwift/data/cacert.pem- Note: Appending the contents of
ssl/cert-zwift-com.pemwith a text editor doesn't work (#62)
- Note: Appending the contents of
- Using a text editor (with admin privileges) open
/Applications/Zwift.app/Contents/Info.plist- Append these keys:
<key>NSAppTransportSecurity</key> <dict> <key>NSExceptionDomains</key> <dict> <key>zwift.com</key> <dict> <key>NSExceptionAllowsInsecureHTTPLoads</key> <true/> <key>NSIncludesSubdomains</key> <true/> </dict> </dict> </dict>
- Append these keys:
- Using a text editor (with admin privileges) open
/etc/hosts- Append this line:
<zoffline ip> us-or-rly101.zwift.com secure.zwift.com cdn.zwift.com launcher.zwift.com
(Where<zoffline ip>is the ip address of the machine running zoffline. If it's running on the same machine as Zwift, use127.0.0.1as the ip.)
- Append this line:
Why: We need to redirect Zwift to use zoffline and convince OS X and Zwift to accept zoffline's self signed certificates for Zwift's domain names. Feel free to generate your own certificates and do the same.
Android (requires a rooted device)
- Install Zwift on the device
- Open Zwift once to complete installation (i.e download all extra files).
- Append the contents of
ssl/cert-zwift-com.pemto/data/data/com.zwift.zwiftgame/dataES/cacerts.pemon the device- Note: this file will only exist after the first run of Zwift since it's downloaded after the initial install
- Recommended approach for appending the contents (due to #62):
adb push ssl/cert-zwift-com.pem /data/data/com.zwift.zwiftgame/dataES/- In
adb shell:cd /data/data/com.zwift.zwiftgame/dataES/ - In
adb shell:cat cert-zwift-com.pem >> cacert.pem - However you do it, ensure the permissions and ownership of the file remains the same.
- Modify the device's /etc/hosts file
- Append this line:
<zoffline ip> us-or-rly101.zwift.com secure.zwift.com cdn.zwift.com
(Where<zoffline ip>is the ip address of the machine running zoffline.) - If no text editor on the device, recommend:
adb pull /etc/hosts- (modify on PC)
adb push hosts /etc/hosts
- Append this line:
- Start Zwift and sign in using any email/password
- If multiplayer is enabled, access https://secure.zwift.com/signup/ to sign up and import your files.
Why: We need to redirect Zwift to use zoffline and convince Zwift to accept zoffline's self signed certificates for Zwift's domain names. Feel free to generate your own certificates and do the same.
Enabling/Disabling zoffline
To use Zwift online like normal, comment out or remove the line added to the hosts
file before starting Zwift. Then ensure Zwift is fully closed (right click
the Zwift system tray icon and exit) and restart Zwift.
Step 3 [OPTIONAL]: Obtain current Zwift profile
Expand
If you don't obtain your current Zwift profile before first starting Zwift with zoffline enabled, you will be prompted to create a new profile (height, weight, gender). Your profile can be further customized and changed via the in game menu (e.g. name, nationality, weight change, etc).
To obtain your current profile:
- Ensure zoffline is disabled.
- Run
scripts/get_profile.py -u <your_zwift_username>- Or, if using the Windows zoffline.exe version without Python installed you can run
get_profile.exeobtained from https://github.com/zoffline/zwift-offline/releases/tag/zoffline_helper in place ofscripts/get_profile.py
- Or, if using the Windows zoffline.exe version without Python installed you can run
- Move the resulting
profile.bin(saved in whatever directory you ran get_profile.py in) into thestoragedirectory.- If using zoffline.exe on Windows, create a
storagedirectory within the same folder as zoffline.exe if it does not already exist. - If multiplayer is enabled, use the upload button in the launcher window to import your file.
- If using Docker, move
profile.bininto the path you passed to-v
- If using zoffline.exe on Windows, create a
Step 4 [OPTIONAL]: Upload activities to Strava
Expand
- Install dependencies: stravalib
- e.g., on Linux/Mac:
pip3 install stravalib - e.g., on Windows in command prompt:
pip install stravalib- You may need to use
C:\Users\<username>\AppData\Local\Programs\Python\Python39\Scripts\pip.exeinstead of justpip
- You may need to use
- Or, if using the Windows zoffline.exe version without Python installed you can run
strava_auth.exeobtained from https://github.com/zoffline/zwift-offline/releases/tag/zoffline_helper in place ofscripts/strava_auth.pybelow.
- e.g., on Linux/Mac:
- [OPTIONAL] Get CLIENT_ID and CLIENT_SECRET from https://www.strava.com/settings/api
- Run
scripts/strava_auth.py --client-id CLIENT_ID --client-secret CLIENT_SECRET- Run without arguments to use default values.
- Open http://localhost:8000/ and authorize.
- Move the resulting
strava_token.txt(saved in whatever directory you ranstrava_auth.pyin) into thestorage/<player_id>directory.- If multiplayer is enabled, use the upload button in the launcher window to import your file.
Step 5 [OPTIONAL]: Upload activities to Garmin Connect
Expand
- Install dependencies: garmin-uploader, cryptography (optional)
- e.g., on Linux/Mac:
pip3 install garmin-uploader cryptography - e.g., on Windows in command prompt:
pip install garmin-uploader cryptography- You may need to use
C:\Users\<username>\AppData\Local\Programs\Python\Python39\Scripts\pip.exeinstead of justpip
- You may need to use
- e.g., on Linux/Mac:
- Create a file
garmin_credentials.txtin thestorage/<player_id>directory containing your login credentials<username> <password>- Note: this is not secure. Only do this if you are comfortable with your login credentials being stored in a clear text file.
- If multiplayer is enabled, use the upload button in the launcher window to encrypt the credentials file.
Step 6 [OPTIONAL]: Enable multiplayer
Expand
To enable support for multiple users perform the steps below. zoffline's previous multi-profile support has been superceded by full multiplayer support. If you were previously using multiple profiles with zoffline you will need to enable multiplayer to continue supporting multiple users.
- Create a
multiplayer.txtfile in thestoragedirectory. - If you are not running zoffline on the same PC that Zwift is running: create a
server-ip.txtfile in thestoragedirectory containing the IP address of the PC running zoffline.- TCP ports 80, 443, 3023 and UDP port 3022 will need to be open on the PC running zoffline if its running remotely.
- Start Zwift and create an account in the new Zwift launcher and upload your
profile.bin,strava_token.txt, and/orgarmin_credentials.txtif you have them.- This account will only exist on your zoffline server and has no relation with your actual Zwift account.
Extra optional steps
Expand
- To obtain the official map schedule and update files from Zwift server: create a
cdn-proxy.txtfile in thestoragedirectory. This can only work if you are running zoffline on a different machine than the Zwift client. - To enable the password reset feature when multiplayer is enabled: create a
gmail_credentials.txtfile in thestoragedirectory containing the login credentials of a Gmail account. You need to enable the "Less secure app access" in the account settings and you may need to access https://accounts.google.com/DisplayUnlockCaptcha to allow the login from the server. - If the Zwift client is having issues connecting to the Linux server ("The request was aborted: Could not create SSL/TLS secure channel." or "The underlying connection was closed: An unexpected error occurred on a send. Received an unexpected EOF or 0 bytes from the transport stream."): change MinProtocol in /etc/ssl/openssl.cnf to TLSv1.0
[system_default_sect] MinProtocol = TLSv1.0 CipherString = DEFAULT@SECLEVEL=1
Community Discord and zoffline (online) server
Please join the community supported Discord and their enhanced version of zoffline, hosted Online!
Follow the guide in #instructions to create your account and join other Zwifters.
Dependencies
Docker
-or-
- Python 3 (https://www.python.org/downloads/)
- On Windows, installing Python via the Microsoft Store is highly recommend! If using a Python installer, ensure that in the first Python installer screen "Add Python 3.x to PATH" is checked.
- Python 2 remains supported for now, but it is not recommended.
- Flask (http://flask.pocoo.org/)
pip3 install flask
- python-protobuf (https://pypi.org/project/protobuf/)
pip3 install protobuf
- protobuf3_to_dict (https://github.com/kaporzhu/protobuf-to-dict)
pip3 install protobuf3_to_dict
- pyJWT (https://pyjwt.readthedocs.io/)
pip3 install pyjwt
- flask-login (https://flask-login.readthedocs.io/en/latest/)
pip3 install flask-login
- FlaskSQLAlchemy (https://flask-sqlalchemy.palletsprojects.com/en/2.x/)
pip3 install flask_sqlalchemy
- gevent (http://www.gevent.org/)
pip3 install gevent
- OPTIONAL: stravalib (https://github.com/hozn/stravalib)
pip3 install stravalib
- OPTIONAL: garmin-uploader (https://github.com/La0/garmin-uploader)
pip3 install garmin-uploader
- OPTIONAL: cryptography (https://cryptography.io/en/latest/)
pip3 install cryptography
Note
Future Zwift updates may break zoffline until it's updated. While zoffline is
enabled Zwift updates will not be installed. If a zoffline update broke
something, check the CHANGELOG for possible changes that need to be made.
Don't expose zoffline to the internet, it was not designed with that in mind.
If zoffline is out of date from Zwift's official client
If zoffline is behind in support of the latest Zwift client it can be updated (if running Linux) to run using the latest Zwift version by running this script from within the zwift-offline repository: https://gist.github.com/zoffline/b874e93e24439f0f4fbd7b55f3876fd2Note: there is no guarantee that an untested Zwift update will work with zoffline. However, historically, Zwift updates rarely break zoffline.
Disclaimer
Zwift is a trademark of Zwift, Inc., which is not affiliated with the maker of this project and does not endorse this project.
All product and company names are trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.