I have to install the arcpy libs for raster data processing and need to use Python 3.8.x to do so due to security guides. Has anyone successfully installed the arcgis-server-py3 package?
Here is a list of what has been completed thus far:
Installed into "base" env: conda install requests-toolbelt-0.9.1-py_0.tar.bz2 conda install requests_ntlm-1.1.0-py_0.tar.bz2 conda install ntlm-auth-1.4.0-py_0.tar.bz2
Has to be offline due to disconnected network: conda config --set offline True
Create new env: conda create --clone base --name arcgis_python3
Install arcgis and arcgis-server-py3: conda activate arcgis_python3 conda install arcgis-1.8.5-py38_1783.tar.bz2 conda install arcgis-server-py3-10.8.1-py36_14362.tar.bz2
Added environment variable: export ARCGISHOME="///*/arcgis/server/"
Once all of the install steps have been completed, I run python and attempt to import arcpy - there are no install errors, but Python complains it cannot find arcpy even though it is installed.