1 Answer
- Newest
- Most votes
- Most comments
1
Hey Jason,
-
For the first issue you should try to save your script to a designated directory, you can specify the path when saving the file in your code editor or IDE. For example, in Python, you can use the
os
module to specify the directory path when saving a file:import os path = '/path/to/your/directory/' filename = 'your_script.py' full_path = os.path.join(path, filename) with open(full_path, 'w') as file: file.write('Your script content here')
NOTE: ensure that you have write permissions to the directory where you're trying to save your scripts.
- For the second issue is because you don't have the required permission to view your account settings. You'll need to contact your system administrator or IT support to request the necessary permissions.
Relevant content
- asked 2 years ago
- asked 7 months ago
- asked 6 years ago
- Accepted Answerasked 5 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 9 months ago
- AWS OFFICIALUpdated 2 months ago