tfe-tfc-migration-tool
tfe-tfc-migration-tool copied to clipboard
Issue running migration.py
I am trying to run the tool on the machine where my TFE is configured. I have installed "pip3 install terrasnek==0.0.16", and followed the steps as mentioned in the document. However, on running the command "python migration.py --vcs-file-path "/path/to/file/vcs.json" --migrate-all-state > outputs.txt" I am getting the below error:
Traceback (most recent call last):
File "migration.py", line 5, in
@chetanchatrath Can you kindly confirm that you're replacing the "/path/to/file/vcs.json" value with a valid local path to your VCS mapping file?
I've got similar issue, First I've tried to check if the dependency was installed by
pip3 show terrasnek
and it was visible, later I realized that python may be configure to python2.8 instead of python3, so running the script
python3 migration.py ...
has helped