Uninstall Procedure?

905
4
Jump to solution
05-19-2017 07:47 AM
ChristopherQuick
New Contributor II

What is the process for uninstalling the r-bridge-install for Python?

Tags (2)
0 Kudos
1 Solution

Accepted Solutions
ShaunWalbridge
Esri Regular Contributor

For package managed software like R and Python, it's typical that installers don't modify packages that have been added by the user after installation, only the base software is removed. So, if you uninstall R, you'll still have any R packages left on your machine, including the arcgisbinding package installed by the R-ArcGIS bridge. To remove it, you can do so from the R prompt with the command

  remove.packages('arcgisbinding')

Unlike other software, R packages are self-contained and don't have any interaction with the system, so won't have any continuing interactions with other programs or the operating system if left.

Cheers,

Shaun

View solution in original post

4 Replies
DanPatterson_Retired
MVP Emeritus

is it listed in your system through control panel ? (search on uninstall should yield 'uninstall or change program')

Control Panel\All Control Panel Items\Programs and Features

0 Kudos
ShaunWalbridge
Esri Regular Contributor

For package managed software like R and Python, it's typical that installers don't modify packages that have been added by the user after installation, only the base software is removed. So, if you uninstall R, you'll still have any R packages left on your machine, including the arcgisbinding package installed by the R-ArcGIS bridge. To remove it, you can do so from the R prompt with the command

  remove.packages('arcgisbinding')

Unlike other software, R packages are self-contained and don't have any interaction with the system, so won't have any continuing interactions with other programs or the operating system if left.

Cheers,

Shaun

ChristopherQuick
New Contributor II

Does this also clean up any remnants left be find under the Python folders too?

0 Kudos
ShaunWalbridge
Esri Regular Contributor

How are you installing the bridge? If you're using the Python toolbox, then you can safely remove the directory of extracted contents which you downloaded from GitHub. If you're using Pro's Python backstage to install the package, you can uninstall it entirely from the "Installed Packages" tab of the backstage.

0 Kudos