Q: When will Python be upgraded to a higher version than 3.9?
A: We currently plan to upgrade to Python version 3.11 in the near term.
Q: How do I install Spyder?
A: There is a bug preventing users from installing Spyder in ArcGIS Pro 3.1. The bug has been resolved in ArcGIS Pro 3.1.3 and ArcGIS Pro 3.2. Installing Spyder into a clone from the Package Manager should now work. If you are still running into a problem, this could be due to the packaging cache. To update the packaging cache, navigate to the Environment Manager and click the refresh button. If issues continue to persist, try the following steps:
conda create --clone arcgispro-py3 -p %localappdata%\esri\conda\envs\<clone name> --pinned
activate <clone name>
conda install spyder
You may also want to create a shortcut directly to Spyder to avoid having to launch from the command line.
%localappdata%\esri\conda\envs\<clone name>\Scripts
Q: Why are Xarray functions like resample broken in 3.2?
A: Our upgrade to Pandas 2.0.2 broke some Xarray functionality. The issue will be addressed in the 3.2.1 patch. In the meantime, the workaround is to upgrade Xarray to the latest version.
conda create --clone arcgispro-py3 -p %localappdata%\esri\conda\envs\<clone name> --pinned
proswap <clone name>
conda install xarray -–no-deps -yNote: This will only update Xarray to the latest 2023.6.0 version.
Q: My custom ATBX script tool that uses dunder file (__file__) no longer works after I upgraded to ArcGIS Pro 3.2, why?
At Pro 3.2, the value in the __file__ variable was changed for embedded scripts (for both validate and execute) inside .atbx file.
Normally this __file__ variable is used to reference external resources that are deployed in a folder relative to the .atbx.
At 3.1 the value in __file__ was:
At 3.2 the value in __file__ is:
Note: this only affects validate and execute scripts inside a .atbx file. Validate and execute scripts stored outside the .atbx (as a .py file on disk) are unaffected. Additionally, embedded scripts in a .tbx file are unaffected.
Updating the affected code:
The affected code we typically see is os.path.dirname(__file__).
The proposed replacement code is os.path.dirname(__file__.split(".atbx")[0]).
This proposed replacement code will work in embedded validate as well as embedded execute scripts. This code will produce desired and consistent result with the __file__ in Pro 3.2 as well as earlier releases.
import os # Show how various mock __file__ values from 3.1 & 3.2 are processed
# using the proposed method: for __file__ in [
r"C:\Path\MyToolbox.atbx#MyTool_MyToolbox.py", # execute Pro 3.1
r"C:\Path\MyToolbox.atbx#MyTool_MyToolbox.UpdateParameters.py", # validate Pro 3.1
r"C:\Path\MyToolbox.atbx\MyTool.tool\tool.script.execute.py", # execute Pro 3.2
r"C:\Path\MyToolbox.atbx\MyTool.tool\tool.script.validate.py", # validate Pro 3.2
]:
print(os.path.dirname(__file__.split(".atbx")[0]))
Q: How does the experience of running an ArcGIS Notebook in ArcGIS Pro compare with running a Jupyter Notebook outside of Pro?
A: With notebooks in ArcGIS Pro, you can open a map view and a notebook view side-by-side, allowing you to visualize and directly interact with the data.
Q: Can I use the standard Jupyter Notebook keyboard shortcuts?
A: Keyboard shortcuts work just like they do in Jupyter Notebook.
Starting at 3.0 we intentionally disabled the print, browse forward, and browse backward shortcuts, and enabled the zoom and find shortcuts.
Q: Using keyboard shortcuts to undo code, the latest actions I performed in the map are instead undone. Using copy and paste to move code results in similarly strange behaviors.
A: This is a known and unfortunate bug. To immediately work around this issue, make sure the notebook pane of the notebook you are editing is the active one (click on the tab), and confirm the Notebook ribbon is displayed. This should get Pro back into a state where keyboard shortcuts are performed on your notebook, and not on the map.
Q: Can I use magic ( % ) and shell ( ! ) commands in my notebook?
A: Yes! Many magic and shell commands are supported since ArcGIS Pro 2.6. Magic and shell commands are a convenience that enhance data analysis and offer a bridge for executing shell commands without leaving your notebook. Certain magic and shell commands are unsupported, including but not limited to %history, !ipconfig, and !ping.
For more information regarding magic and shell commands, see magic commands and shell commands.
Q: Why am I getting the error "The system cannot find the path specified." when running conda magic or shell commands?
A: This error may appear if you have a separate installation of conda on your machine, and you have a PATH environment variable pointing to that installation of conda. In this case, you will need to remove the environment variable from PATH. To confirm:
Q: Why are figures from matplotlib not showing up in the cell output of my notebook?
A: Inline visualizations from matplotlib are supported since ArcGIS Pro 2.6. Starting at ArcGIS Pro 3.1, you no longer need to call matplotlib.pyplot.show to display the plot inline. However, it is still recommended that you use the show method to avoid displaying the object representation string of your plot, which may be unnecessary or distracting. For example:
%matplotlib inline # Imports import matplotlib.pyplot as plt import pandas as pd import arcgis # Create spatially enabled data frame (SEDF) sedf = pd.DataFrame.spatial.from_featureclass("USA_States_Generalized") # Create plot plt.bar(sedf.STATE_NAME, sedf.POP2010) # Update plot elements plt.suptitle("Population of New England States", fontsize=16) plt.ylabel("Population (in millions)") plt.xticks(rotation=45) # Draw the plot plt.show()
Q: Why does a new instance of ArcGIS Pro launch when I run %pip from a notebook cell?
A: This is a known issue with embedded Python interpreters (such as what is running in ArcGIS Pro). Magic commands use the output of sys.executable to determine the host process, which in this case launches ArcGISPro.exe and not pythone.exe. You can avoid this by prefixing the pip command with ! instead of %. Note that we recommend using conda over pip.
Q: Where can I find the option for restarting the kernel?
A: You currently cannot restart the kernel unless you close and reopen ArcGIS Pro. You can, however, interrupt the kernel using the Interrupt Kernel button on the Notebook ribbon. While not a complete workaround, you can also use the %reset -f magic command to clear all variables in the namespace.
Q: Can I use R or C# in my notebook instead of Python?
A: You can only open a Python kernel in notebooks running in ArcGIS Pro, other languages are not supported.
Q: I'd like to export my notebook (.ipynb) to a Python script (.py), is that possible?
A: Yes, you can export a notebook to a Python (.py) or HTML (.html) file from the Notebook ribbon’s Export button.
you can also use the Jupyter command nbconvert from the command prompt, or you can run the command directly from your notebook by preceding the command with an exclamation mark (!).
!jupyter nbconvert --to script "Path\To\Your_Notebook.ipynb"
The resulting Your_Notebook.py file will be in the same directory as your notebook, Your_Notebook.ipynb.
Q: Can I open a Jupyter notebook in ArcGIS Pro that I have previously created outside of Pro?
A: Yes, ArcGIS Notebooks are simply Jupyter notebooks and any notebook can be run in ArcGIS Pro. However, it is your responsibility to ensure any libraries used in these other environments are available in the active environment of ArcGIS Pro.
Q: Can I use my ArcGIS Notebook created in Pro across other platforms?
A: ArcGIS Notebooks are simply Jupyter Notebooks (.ipynb) and can be run in any Jupyter environment or as hosted ArcGIS Notebooks in ArcGIS Enterprise or ArcGIS Online. However, it is your responsibility to make sure that any libraries used in the notebook are available in these other environments.
Q: The Cell menu is missing from my notebook.. why?
A: This can occur when Jupyter Notebook runs out of allocated memory. Try clearing all cell outputs (you will need to use the Command Palette since the Cell menu is missing):
You may need to reload the notebook.
To prevent this from happening, try to minimize large cell outputs. For example, if a DataFrame is very large and you don't need to view all records in the table, use df.head(x) to display only the first x records.
You can also try increasing the memory limit.
Q: When opening a notebook in ArcGIS Pro, why did I receive a "Failed to load notebook" error?
A: There are various possible causes for this. Known causes and solutions:
Q: Can I open a notebook in Pro from a UNC path?
A: UNC paths are supported as of ArcGIS Pro 3.0 - just be careful about collisions as this opens up the possibility of multiple users editing the same file. If you are still on an earlier version of ArcGIS Pro and unable to upgrade, the best workaround is mapping the UNC path to a drive or alternatively creating a symbolic link.
Q: I keep clobbering variables when I have multiple notebooks open in Pro. Why are variable names being shared across multiple notebooks?
A: ArcGIS Pro runs a single Python instance. This execution context is shared by each notebook opened in a single instance of ArcGIS Pro. Depending on the contents of concurrently open notebooks, this could potentially result in variable name collisions. To avoid potential issues you may consider:
Q: Why are the environment variables I set in Notebooks (or Python Window) not being honored by Geoprocessing tools I run from the Geoprocessing pane?
A: This behavior is due to the environment levels hierarchy.
When setting an environment variable using arcpy.env, you are setting it at the Script level. Since this is the lowest level in the hierarchy, the setting will not be honored at any of the above levels. In order for your environment variables to be honored by both Script and Geoprocessing tools, you must set the environment variables using the Application settings from your project.
When is Python going to be upgraded from 3.9? 3.10 is already old news, and 3.12 is out. I get it if you're tied to Anaconda, but even that's on 3.11. There are a a lot of great new features in Python 3.10 and up.
Hi @quillaja, thanks for the question! We currently plan to upgrade to Python version 3.11 in the near term.
May I know when ArcGIS Pro is upgrade to 3.2, is there any dltsolution (python package) incompatibility? We have noticed that if the ArcGIS Pro upgrade to 3.2 or installing fresh ArcGIS Pro 3.2, the dltsolution could not be added and install due to version conflict. The maximum version for dlt solution is 3.1.3, is it compatible with ArcGIS Pro 3.2?
Hi @T_Syaherah,
Yes that is correct, there is no 3.2 package for dltsolutions, in ArcGIS Pro Pro 3.2 the Data Loading tools are now included within the Data Management toolbox.
Hope that helps!
Hi,
I am inclined to think that there is something else broken as well.
Has anyone else experienced issues with displaying layers converted from local geodatabases to SEDFs in map widgets?
in 3.2, I can't seem to see the SEDF when loaded into the map widget, but when saved into the portal, the feature layers added from SEDFs are present.
in ArcGIS Online:
Portal search items also load properly.
if is helps, i am using a social login, so the GIS connection i use is
gis = GIS("pro")
I have tried cloning my environment and updating the arcgis package to the latest available version via conda in the Python Command Prompt.
Please let me know if you have the same issues, and if my post is approriate , thanks!
Cheers,
Marcus
Could we expect an upgrade to the python version in the next major release of ArcGIS Pro?
@MarcusPaoloPatam I attempted but was unable to reproduce your issue, it might be best to post your question at the ArcGIS API for Python community forum (note: The ArcGIS API for Python is managed by a separate team from ArcPy). Hopefully they are able to help you sort this out
@LanceKirby our current plan is to upgrade Python in the next release (ArcGIS Pro 3.3), however, we can't guarantee at this time that we will meet this milestone.