Q. How to setup the Python environment for AutoScript? #3
Replies: 3 comments 1 reply
-
Update: Tested the complete installation for Autoscript 1.12 |
Beta Was this translation helpful? Give feedback.
-
Update - Autoscript 1.13 released - download link Highlight feature - EDS support(with spectrum image) and Auto-beamblanker P.S: Also announcement released at this link - but this has download link to only 1.12 and below version -------- I guess need to follow multiple pages to stay updated |
Beta Was this translation helpful? Give feedback.
-
Problem - Q. How to connect workstation to microscope pc through suppprt pc? PC1 - ip1 -> support pc Connections which exist: Goal: Access ip2:7521 from PC3, via ip1, i.e., from PC3 → ip1:7521 → ip2:7521 Solution: using Netsh interface portproxy commands |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
This guide explains how to set up the Python environment for AutoScript, Thermo Fisher's scripting interface for Transmission Electron Microscopes (TEMs).
Prerequisites
Before proceeding, ensure you have the following:
AutoScript Server Installed
The AutoScript server should be installed on the microscope PC.
Required Files from the Manufacturer
The installation package typically includes the following structure:
AutoScriptTEM__version_
├── AutoScriptTEM__version_.exe
├── Dependencies
├── PythonPackages
│ ├── autoscript_core-_version-py3-none-any.whl
│ ├── autoscript_tem_microscope_client-_version-py3-none-any.whl
│ ├── autoscript_tem_microscope_client_tests-_version-py3-none-any.whl
│ ├── autoscript_tem_toolkit-_version-py3-none-any.whl
│ ├── requirements.txt
│ └── thermoscientific_logging-_version-py3-none-any.whl
If you do not have Conda installed, follow the Conda installation guide.
Step-by-Step Setup Instructions
Create a New Conda Environment
Open a terminal and run:
This command creates a new Conda environment named
AutoScript
with Python 3.8.17.Activate the Environment
This ensures all installations are contained within the
AutoScript
environment.Navigate to the Python Packages Directory
Change to the directory containing the Python packages:
Install the Required Python Packages
Run the following command to install all provided
.whl
(wheel) files:pip install .
This will automatically install all required dependencies in the AutoScript conda environement
Extra packages Using
requirements.txt
If needed, you can also install packages using pip as mentioned in the
requirements.txt
fileBeta Was this translation helpful? Give feedback.
All reactions