# Accidentally installed ruby-railties

**URL:** https://meta.discourse.org/t/accidentally-installed-ruby-railties/261247
**Category:** Development
**Created:** [April 10, 2023, 10:09pm UTC](https://meta.discourse.org/t/accidentally-installed-ruby-railties/261247 "2023-04-10T22:09:16Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![AtlasGames](https://avatars.discourse-cdn.com/v4/letter/a/77aa72/32.png) [@AtlasGames](https://meta.discourse.org/u/AtlasGames)
#### Post date: [April 10, 2023, 10:09pm UTC](https://meta.discourse.org/t/accidentally-installed-ruby-railties/261247/1 "2023-04-10T22:09:16Z")

</div>

I messed up. I was trying to manually change a user’s password, and ended up installing ruby-railties instead. I need someone more experienced than me to tell me if I should just leave it alone, or if it’s a big problem and I should try to uninstall it, and point me at some instructions if possible. Here are the specifics:

WHAT I WAS SUPPOSED TO DO IN TERMINAL:

```plaintext
cd /var/discourse
./launcher enter app 
rails c
u = User.find_by_email('email@test.com')
u.password='XXXXXXXXX'
u.save!
ctrl+d to exit

```

WHAT I ACTUALLY DID IN TERMINAL:

```plaintext
cd /var/discourse
./launcher <-- LEFT OFF THE "ENTER APP" COMMAND
rails c

```

Response at that point was “Command ‘rails’ not found, but can be installed with: apt install ruby-railties” So then I entered “apt install ruby-railties” and installed the app.

Any advice? Discourse seems to be working fine.

---

<div class="post-metadata">

### Author: ![jomaxro](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jomaxro/32/126216_2.png) [@jomaxro](https://meta.discourse.org/u/jomaxro)
#### Post date: [April 10, 2023, 10:23pm UTC](https://meta.discourse.org/t/accidentally-installed-ruby-railties/261247/2 "2023-04-10T22:23:20Z")

</div>

You should be just fine. You installed `ruby-railties` on the host operating system. Doing so won’t impact your Discourse install, though it may cause confusion in the future if you forget `enter app` again, as you might end up opening a rails console on the host, rather than in docker.

`apt remove ruby-railties` is safe to run - just make sure you’re not in the docker container.
