File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ s = cs50.get_string();
26261 . Run ` sudo su - ` .
27271 . Run ` apt install -y libmysqlclient-dev mysql-server postgresql ` .
28281 . Run ` pip3 install mysqlclient psycopg2-binary ` .
29- 1 . In ` /etc/mysql/mysql.conf.d/mysqld.conf ` , add ` skip-grant-tables ` under ` [mysqld] ` .
29+ 1 . In ` /etc/mysql/mysql.conf.d/mysqld.cnf ` , add ` skip-grant-tables ` under ` [mysqld] ` .
30301 . In ` /etc/profile.d/cli.sh ` , remove ` valgrind ` function for now.
31311 . Run ` service mysql start ` .
32321 . Run ` mysql -e 'CREATE DATABASE IF NOT EXISTS test;' ` .
@@ -41,7 +41,7 @@ s = cs50.get_string();
4141 host all all 127.0.0.1/32 trust
4242 ```
43431 . Run ` service postgresql start ` .
44- 1 . Run `psql -c 'create database test;' -U postgres.
44+ 1 . Run ` psql -c 'create database test;' -U postgres ` .
45451 . Run ` touch test.db ` .
4646
4747### Sample Tests
You can’t perform that action at this time.
0 commit comments