#Nvm ran into another issue See

1 messages · Page 1 of 1 (latest)

crimson swallow
#

okay so what about "apt search dotnet"? What's in your /etc/apt/sources.list and /etc/apt/sources.list.d/* ?

slim atlas
crimson swallow
#

looks like you need dotnet-runtime as your package name then, so "sudo apt install dotnet-runtime"

slim atlas
#

Problem with it, though

#

The Pi isn't responding to input rn

crimson swallow
#

try a reboot? that almost sounds like a hardware issue, which might be related to, or separate from, your software issues

slim atlas
#

Nah, just slow to respond

#

Which is weird because RAM is at 50%

crimson swallow
#

so do "apt show dotnet-runtime" or "apt search dotnet-runtime" pull up the package properly?

#

if "apt show dotnet-runtime" shows it, please post the output of that

slim atlas
#

Nothing

crimson swallow
#

so when you do the "apt search dotnet" and it pulls up "dotnet-runtime" like you mentioned, what all does it say?

slim atlas
crimson swallow
#

so there's none with just "dotnet-runtime" without a version number?

slim atlas
#

Yep

crimson swallow
#

oh you said there was a few comments back, or I misunderstood. Try "sudo apt install dotnet-runtime-7.0" and see what output that gives you if it fails

slim atlas
#

And I copied it directly from the list

crimson swallow
#

something goofy is happening here for sure. Can you post the output of "cat /etc/apt/sources.list /etc/apt/sources.list.d/*"

#

I'll want all of it so might be good to do a codeblock with the backticks (I think 3 backticks start a codeblock)

slim atlas
crimson swallow
#

nvm that's easy

#

I was expecting it to be bigger

#

you don't want that "arch=amd64", and probably not one of the ARMs.

#

I don't recall offhand which ARM style RPi is

slim atlas
#

ARMv8

crimson swallow
#

can you take out the "[arch=amd64,arm64,armhf]" so it's just "deb https://blahblah" ?
and then run "sudo apt update"

slim atlas
#

How do I do that first part?

crimson swallow
#

use a text editor like nano, vim, or similar

#

an you also link me to the guide you were following for this?

slim atlas
#

BRO

#

Why is Dyno in here

#

...

#

@crimson swallow Can you kick Dyno out?

#

These two are not related though. Separate searches

crimson swallow
#

I'm not sure what you're referring to with regard to Dyno?

Working from my phone at the moment, will need to dig into this info a bit later

slim atlas
#

Dyno joined in when I posted one link after another

crimson swallow
#

did you already run the install script from the link you posted?

#

if so... what does "ls -lah | grep dot" give you?

slim atlas
crimson swallow
#

so it looks like you already have dotnet at least partially installed. what about these steps?

slim atlas
crimson swallow
#

what about "echo $PATH" ?

slim atlas
crimson swallow
#

okay what about "ls .dotnet"?

slim atlas
#

Got it to show up

crimson swallow
#

it's still not printing your version though

#

what about "ls -lah .dotnet" or "./.dotnet/dotnet --version" ?

slim atlas
crimson swallow
#

Why didn't you say that sooner?

slim atlas
#

I didn't notice it until now

crimson swallow
#

ah. If you're out of space that's an entirely different issue. 🙂

slim atlas
#

How do I reinstall it then?

#

Cause it says it's completely installed

crimson swallow
#

Did you free up enough space?

slim atlas
#

I think so, yeah

crimson swallow
#

what does "df -h" give?

slim atlas
crimson swallow
#

you're pretty close on space but you could try. Something like "mv .dotnet .dotnet.old" and then re-running the commands from Microsoft in step 2a

slim atlas
#

Nope, still not enough space

crimson swallow
#

sounds like you may need to delete some more things

slim atlas
#

Ik

slim atlas
#

Ok, got it @crimson swallow

crimson swallow
#

oh good! So now does your exporter thing work?

slim atlas
#

Nope, still can't find the file

slim atlas
#

@crimson swallow

crimson swallow
#

You completely lost me with the latest screenshot; you didn't post anything about Docker from what I'm seeing, so I'm not sure why you're trying to run docker when the instructions say to run dotnet?
if you "ls" in the folder you're in, are all the files from the zip there?
("ls -1tr | wc -l" should give you 23)

slim atlas
#

13

crimson swallow
#

I'm still completely lost as to what you're doing (or why) at this point.

Step 1 was to install dotnet, which you did, step 2 was to extract and run the zip file, which it appears you haven't yet done. Can you try that?

slim atlas
#

This is the code:

def get_chat_exporter_path():
    if os.name == 'nt': # windows environment
        return f'.{os.sep}DiscordChatExporter.CLI{os.sep}DiscordChatExporter.Cli.exe'
    elif os.name == 'posix': # linux environment
        return f'dotnet .{os.sep}DiscordChatExporter.CLI{os.sep}DiscordChatExporter.Cli.dll'
    else:
        return