this post was submitted on 30 Jul 2023
180 points (100.0% liked)

Fediverse

26737 readers
51 users here now

A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, KBin, etc).

If you wanted to get help with moderating your own community then head over to !moderators@lemmy.world!

Rules

Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration), Search Lemmy

founded 1 year ago
MODERATORS
 

I had an account on lemmy.one and now the instance has been down for a day or two so I made this new account. I also heard other small instances are dead or disappeared.

So which ones do you think will actually stick around for a long time?

ALSO, does anyone know how to get my subscriptions from lemmy.one and import it here? TIA!

you are viewing a single comment's thread
view the rest of the comments
[–] lemming934@lemmy.sdf.org 1 points 11 months ago (2 children)

Here's a thread where I helped someone else with the process on windows: https://lemmy.sdf.org/comment/1420339

The steps are:

  1. Set up the python code
    1. Go to https://github.com/wescode/lemmy_migrate/releases/tag/v1.1.0
    2. Download the zip file
    3. Extract the zip file, to make a folder somewhere on your system called lemmy_migrate-1.1.0. Remember where this folder is
    4. Inside the folder you will find a file called config.ini. Use notepad to edit the file to have your server URL and login credentials.
  2. Set up the python interpreter
    1. Install python from https://www.python.org/downloads/
    2. Open powershell
    3. install the python package requests by pasting the following command into powershell: py -m pip install --user requests
  3. Use the python interpreter to interpret your python
    1. first make sure powershell is looking at the correct folder. One way to do this is to open the lemmy_migrate-1.1.0 folder in windows explorer. right click on the box that shows you the path, and copy the text. then write cd in powershell. This path will very likely be something like C:\\Users\Wu9fee\Downloads\lemmy_migrate-1.1.0. If you don't want to copy and paste the path from explorer, you can just do cd Downloads then cd lemmy_migrate-1.1.0
    2. Finaly, you can run the python command with py lemmy-migrate.py -c config.ini

Let me know if you run into any problems.

If you can pull this off, you can officially say you know how to code.

Nice! I knew someone would know how to do this in PowerShell!

[–] Wu9fee@lemmy.ca 2 points 11 months ago (2 children)

Thanks for the tutorial! I might try but it looks hard. 🤔

Not too hard. Just alot of unfamiliar vocabulary. 😄 If you run into any questions with either of our walk throughs, (my linux one or @lemming934@lemmy.sdf.org 's Powershell one), feel free to DM me. Don't mind helping folks starting their exploration of computers. We all started somewhere.

[–] lemming934@lemmy.sdf.org 1 points 11 months ago

It's not too bad, it seems more difficult because I added all the steps. Changing the folder PowerShell is looking at is easy to do, but hard to explain.