Not a customer? Click the 'Start a free trial' link to begin a 30-day SaaS trial of our product and to join our community.
Existing Cisco AppDynamics customers should click the 'Sign In' button to authenticate to access the community
08-01-2018 09:02 AM
I can't seem to install the Python pip module....
I can see the pip modules listed ...
$ pip3 search appdynamics appdynamics (4.5.0.0) - Python agent for AppDynamics appdynamics-bindeps-linux-x64 (7.0) - Dependencies for AppDynamics Python agent appdynamics-bindeps-linux-x86 (7.0) - Dependencies for AppDynamics Python agent appdynamics-bindeps-osx-x64 (7.0) - Dependencies for AppDynamics Python agent appdynamics-proxysupport-linux-x64 (1.8.0.51.1) - Proxysupport for AppDynamics Python agent appdynamics-proxysupport-linux-x86 (1.8.0.51.1) - Proxysupport for AppDynamics Python agent appdynamics-proxysupport-osx-x64 (1.8.0.51.1) - Proxysupport for AppDynamics Python agent AppDynamicsDownloader (0.2.2) - AppDynamics Download Robot AppDynamicsREST (0.4.10) - AppDynamics REST API Library
I attempted to install the modules with ...
$ pip3 install appdynamics-bindeps-osx-x64 appdynamics-proxysupport-osx-x64 Collecting appdynamics-bindeps-osx-x64
I got the following error ...
Could not find a version that satisfies the requirement appdynamics-bindeps-osx-x64 (from versions: ) No matching distribution found for appdynamics-bindeps-osx-x64
So what am I missing ?
08-05-2018 11:08 PM - edited 08-05-2018 11:09 PM
Hi Seth,
Can you please try the following command and let us know the output
pip3 install -U appdynamics==4.5.0.0
Thanks,
Sajna Sreenivasan
08-05-2018 11:36 PM
Hi Seth,
You can install python appd agent by jsut doing
pip3 install appdynamics
which pulls you latest v4.5.0 appd python agent.
After Installation:
You might also need to configure python agent. Click on the link for details: https://docs.appdynamics.com/display/PRO45/Install+the+Python+Agent
08-06-2018 06:28 AM
The below is what I get when doing a pip3 install with and without version ....
$ pip3 install -U appdynamics==4.5.0.0 Collecting appdynamics==4.5.0.0 Using cached https://files.pythonhosted.org/packages/cb/d4/71572337a4f797fab3dfc07ebab867ec0996817070a0859e63335e5c5d39/appdynamics-4.5.0.0-py2.py3-none-any.whl Collecting appdynamics-proxysupport-osx-x64==1.8.0.51.1; sys_platform == "darwin" and (platform_machine == "x86_64" or platform_machine == "AMD64") (from appdynamics==4.5.0.0) Using cached https://files.pythonhosted.org/packages/5d/26/6bf794ce7380a459ef05df9e3dd40c399dae17f9f6b6fc93d44db9ba07d2/appdynamics_proxysupport_osx_x64-1.8.0.51.1-py2.py3-none-any.whl Collecting appdynamics-bindeps-osx-x64==7.0; sys_platform == "darwin" and (platform_machine == "x86_64" or platform_machine == "AMD64") (from appdynamics==4.5.0.0) Could not find a version that satisfies the requirement appdynamics-bindeps-osx-x64==7.0; sys_platform == "darwin" and (platform_machine == "x86_64" or platform_machine == "AMD64") (from appdynamics==4.5.0.0) (from versions: ) No matching distribution found for appdynamics-bindeps-osx-x64==7.0; sys_platform == "darwin" and (platform_machine == "x86_64" or platform_machine == "AMD64") (from appdynamics==4.5.0.0)
08-06-2018 06:38 AM
looks like it only works in Python 2.x ....
$ pip install appdynamics
... Successfully installed appdynamics-4.5.0.0 appdynamics-bindeps-osx-x64-7.0 appdynamics-proxysupport-osx-x64-1.8.0.51.1
$ python --version Python 2.7.15
Thank you! Your submission has been received!
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form