On my computer with windows 10, I can create following conda environment
conda create -n test-coverage python=3.6
activate test-coverage
pip install gcovr
Now, I want to create this conda environment on a Windows 7 computer with no internet connection. I checked this link
Conda - offline install / update
but I couldn't find the package
gcovr.tar.bz2
How can I install gcovr on an offline computer? Where can I find the current package of gcovr to download?
Thanks!